-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDisplay.cpp
More file actions
833 lines (737 loc) · 28.6 KB
/
Copy pathDisplay.cpp
File metadata and controls
833 lines (737 loc) · 28.6 KB
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
//
// MySETIviewer, a set tools for decoding bitstreams into various formats and manipulating those files
// Display.cpp
// (C) 2023, Mark Stegall
// Author: Mark Stegall
//
// This file is part of MySETIviewer.
//
// MySETIviewer 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 3 of the License, or (at your option) any later version.
//
// MySETIviewer 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 MySETIapp.
// If not, see < https://www.gnu.org/licenses/>.
//
// This file contains the definitions of the Layers class methods/functions
// This class handles the conifguration data and image memory
// used in creating multiple image overlays for display
//
// V1.0.1 2023-12-20 Initial release
//
// Application standardized error numbers for functions:
// See AppErrors.h
//
// This is the Display class for handling the formatting, display, scaling of the overlayed bitmap
//
#include "framework.h"
#include <shtypes.h>
#include <string.h>
#include <stdio.h>
#include "AppErrors.h"
#include "imageheader.h"
#include "display.h"
#include "FileFunctions.h"
//*******************************************************************************
//
// Display()
// class constructor
//
//*******************************************************************************
Display::Display()
{
return;
}
//*******************************************************************************
//
// ~Display()
// class destructor
//
//*******************************************************************************
Display::~Display()
{
ReleaseDisplayImages();
return;
}
//*******************************************************************************
//
// IsGridEnabled(void)
//
//*******************************************************************************
BOOL Display::IsGridEnabled(void)
{
return GridEnabled;
}
//*******************************************************************************
//
// EnableGrid(BOOL Enable)
//
//*******************************************************************************
void Display::EnableGrid(BOOL Enable)
{
GridEnabled = Enable;
}
//*******************************************************************************
//
// CreateDisplayImage(void)
//
//*******************************************************************************
int Display::CreateDisplayImages(void)
{
if (DisplayXextent <= 0 || DisplayYextent <= 0) {
return APPERR_PARAMETER;
}
ReleaseDisplayImages();
int DisplaySize = DisplayXextent * DisplayYextent;
DisplayImage = new COLORREF[DisplaySize];
if (DisplayImage == NULL) {
return APPERR_MEMALLOC;
}
DisplayReference = new COLORREF[DisplaySize];
if (DisplayReference == NULL) {
delete[] DisplayImage;
DisplayImage = NULL;
return APPERR_MEMALLOC;
}
// make sure the clusters are valid
if (GridXmajor <= 0) GridXmajor = 1;
if (GridYmajor <= 0) GridYmajor = 1;
if (GridXminor <= 0) GridXminor = 1;
if (GridYminor <= 0) GridYminor = 1;
if (GapXmajor < 0) GapXmajor = 0;
if (GapYmajor < 0) GapYmajor = 0;
if (GapXminor < 0) GapXminor = 0;
if (GapYminor < 0) GapYminor = 0;
// there are 5 cases for the gaps when calculating the display extent
//
// Gap Major Minor
// !=0 !=0
// ==0 !=0
// !=0 ==0
// ==0 ==0
//
// The overall display is surrounded by a frame of MajorGap size
if (!GridEnabled) {
// Grid disabled case just set the everything to Background image
for (int i = 0; i < DisplaySize; i++) {
DisplayReference[i] = rgbBackground;
}
return APP_SUCCESS;
}
int dAddress;
int y = 0;
if (GapYmajor != 0 && GapYminor != 0) {
// starts with GapYmajor lines of rgbGapMajor
for (int gap = 0; gap < GapYmajor && y < DisplayYextent; gap++, y++) {
dAddress = y * DisplayXextent;
// MajorGap line (just MajorGap colors1)
CreateDisplayLine(dAddress, rgbGapMajor, rgbGapMajor, rgbGapMajor);
}
// then is goes in groups of GridYminorGridYGap lines of the image
// followed by Gap
while(y < DisplayYextent) {
for (int i = 0; i < GridYminor && y < DisplayYextent; i++, y++) {
dAddress = y * DisplayXextent;
// regular line (all elements: Major,Minor,background for image)
CreateDisplayLine(dAddress, rgbBackground, rgbGapMajor, rgbGapMinor);
}
// insert GridYminor lines of using X Grid/gap parameters
// add Y major grid groups - a group of (minor gap Y image lines, minor grid Y lines)
for (int Grid = 0; Grid < (GridYmajor - 1); Grid++) {
// line of rgbGapMinor
for (int gap = 0; gap < GapYminor && y < DisplayYextent; gap++, y++) {
dAddress = y * DisplayXextent;
// MinorGap line (just MajorGap, MinorGap colors)
CreateDisplayLine(dAddress, rgbGapMinor, rgbGapMajor, rgbGapMinor);
}
// insert GridYminor lines of using X Grid/gap parameters
for (int i = 0; i < GridYminor && y < DisplayYextent; i++, y++) {
dAddress = y * DisplayXextent;
// regular line (all elements: Major,Minor,background for image)
CreateDisplayLine(dAddress, rgbBackground, rgbGapMajor, rgbGapMinor);
}
}
// Add Major Gap lines
for (int gap = 0; gap < GapYmajor && y < DisplayYextent; gap++, y++) {
dAddress = y * DisplayXextent;
// MajorGap line (just MajorGap colors1)
CreateDisplayLine(dAddress, rgbGapMajor, rgbGapMajor, rgbGapMajor);
}
}
}
else if (GapYmajor == 0 && GapYminor != 0) {
// no Major gap exists only Minor gaps
while (y < DisplayYextent) {
for (int i = 0; i < GridYminor && y < DisplayYextent; i++, y++) {
dAddress = y * DisplayXextent;
// regular line (all elements: Major,Minor,background for image)
CreateDisplayLine(dAddress, rgbBackground, rgbGapMajor, rgbGapMinor);
}
// insert GridYminor lines of using X Grid/gap parameters
// Add Minor Gap lines
for (int gap = 0; gap < GapYminor && y < DisplayYextent; gap++, y++) {
dAddress = y * DisplayXextent;
// MinorGap line (just MajorGap, MinorGap colors)
CreateDisplayLine(dAddress, rgbGapMinor, rgbGapMajor, rgbGapMinor);
}
}
}
else if (GapYmajor != 0 && GapYminor == 0) {
// no Major gap exists only Minor gaps
// Add Major Gap lines
for (int gap = 0; gap < GapYmajor && y < DisplayYextent; gap++, y++) {
dAddress = y * DisplayXextent;
// MajorGap line (just MajorGap colors1)
CreateDisplayLine(dAddress, rgbGapMajor, rgbGapMajor, rgbGapMajor);
}
while (y < DisplayYextent) {
for (int i = 0; i < (GridYminor*GridYmajor) && y < DisplayYextent; i++, y++) {
dAddress = y * DisplayXextent;
// regular line (all elements: Major,Minor,background for image)
CreateDisplayLine(dAddress, rgbBackground, rgbGapMajor, rgbGapMinor);
}
// insert GridYmajor lines of using X Grid/gap parameters
// Add Major Gap lines
for (int gap = 0; gap < GapYmajor && y < DisplayYextent; gap++, y++) {
dAddress = y * DisplayXextent;
// MajorGap line (just MajorGap colors1)
CreateDisplayLine(dAddress, rgbGapMajor, rgbGapMajor, rgbGapMajor);
}
}
}
else {
// 0,0 case just set the everything to Background image
for (int i = 0; i < DisplaySize; i++) {
DisplayReference[i] = rgbBackground;
}
}
return APP_SUCCESS;
}
//*******************************************************************************
//
// void CreateDisplayLine(COLORREF* dAddress)
//
// Helper function for CreateDisplayImage()
//
//*******************************************************************************
void Display::CreateDisplayLine(int StartAddress,
COLORREF rgbBackground,
COLORREF rgbGapMajor,
COLORREF rgbGapMinor)
{
// there are four cases for the gaps when calculating the display extent
//
// Gap Major Minor
// !=0 !=0
// ==0 !=0
// !=0 ==0
// ==0 ==0
//
// The overall display is surrounded by a frame of MajorGap size
int x = 0;
if (GapXmajor != 0 && GapXminor != 0) {
// starts with GapXmajor pixels of rgbGapMajor
for (int gap = 0; gap < GapXmajor && x < DisplayXextent; gap++, x++) {
// pixels of rgbGapMajor
DisplayReference[StartAddress + x] = rgbGapMajor;
}
// then is goes in groups of GridXminor,GridXGap pixels of the image
// followed by Gap
while (x < DisplayXextent) {
for (int i = 0; i < GridXminor && x < DisplayXextent; i++, x++) {
DisplayReference[StartAddress + x] = rgbBackground;
}
// insert GridXminor pixels of using X Grid/gap parameters
// add Y major grid groups - a group of (minor gap Y image lines, minor grid Y lines)
for (int Grid = 0; Grid < (GridXmajor - 1); Grid++) {
// Pixels(s) of rgbGapMajor
for (int gap = 0; gap < GapXminor && x < DisplayXextent; gap++, x++) {
DisplayReference[StartAddress + x] = rgbGapMinor;
}
// insert GridXminor pixel(s) of using X Grid/gap parameters
for (int i = 0; i < GridXminor && x < DisplayXextent; i++, x++) {
DisplayReference[StartAddress + x] = rgbBackground;
}
}
// Add Major Gap pixels
for (int gap = 0; gap < GapXmajor && x < DisplayXextent; gap++, x++) {
DisplayReference[StartAddress + x] = rgbGapMajor;
}
}
}
else if (GapXmajor == 0 && GapXminor != 0) {
// no Major gap exists only Minor gaps
while (x < DisplayXextent) {
for (int i = 0; i < GridXminor && x < DisplayXextent; i++, x++) {
DisplayReference[StartAddress + x] = rgbBackground;
}
// insert GridYminor lines of using X Grid/gap parameters
// Add Minor Gap lines
for (int gap = 0; gap < GapXminor && x < DisplayXextent; gap++, x++) {
DisplayReference[StartAddress + x] = rgbGapMinor;
}
}
}
else if (GapXmajor != 0 && GapXminor == 0) {
// Major gap > 0, no minor gaps
// Add Major Gap lines
for (int gap = 0; gap < GapXmajor && x < DisplayXextent; gap++, x++) {
DisplayReference[StartAddress + x] = rgbGapMajor;
}
while (x < DisplayXextent) {
for (int i = 0; i < (GridXminor*GridXmajor) && x < DisplayXextent; i++, x++) {
DisplayReference[StartAddress + x] = rgbBackground;
}
// insert GridYmajor lines of using X Grid/gap parameters
for (int gap = 0; gap < GapXmajor && x < DisplayXextent; gap++, x++) {
DisplayReference[StartAddress + x] = rgbGapMajor;
}
}
}
// 0,0 case has nothing to do
return;
}
//*******************************************************************************
//
// UpdateDisplay(COLORREF*, int xsize, int ysize)
//
//*******************************************************************************
int Display::UpdateDisplay(COLORREF* OverlayImage, int xsize, int ysize)
{
int ix=0, iy=0;
int Daddress;
int Iaddress;
BOOL Found = FALSE;
for (int dy = 0; dy <DisplayYextent; dy++) {
Daddress = dy * DisplayXextent;
Iaddress = iy * xsize;
Found = FALSE;
ix = 0;
for (int dx = 0; dx < DisplayXextent; dx++) {
if (DisplayReference[Daddress + dx] == rgbBackground &&
ix<xsize && iy<ysize) {
DisplayImage[Daddress + dx] = OverlayImage[Iaddress + ix];
ix++;
Found = TRUE;
}
else {
DisplayImage[Daddress + dx] = DisplayReference[Daddress + dx];
}
}
if (Found) {
iy++;
}
}
return APP_SUCCESS;
}
//*******************************************************************************
//
// ReleaseDisplayImages(void)
//
//*******************************************************************************
int Display::ReleaseDisplayImages(void) {
if (DisplayImage != NULL) {
delete[] DisplayImage;
DisplayImage = NULL;
}
if (DisplayReference != NULL) {
delete[] DisplayReference;
DisplayReference = NULL;
}
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
{
*BackgroundColor = rgbBackground; // display background color
*GapMajorColor = rgbGapMajor; // display Grid color
*GapMinorColor = rgbGapMinor; // display Gap color
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetColors(COLORREF BackgroundColor, COLORREF GapMajorColor, COLORREF GapMinorColor)
{
rgbBackground = BackgroundColor; // display background color
rgbGapMajor = GapMajorColor; // display Grid color
rgbGapMinor = GapMinorColor; // display Gap color
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetBackgroundColor(COLORREF BackgroundColor)
{
rgbBackground = BackgroundColor; // display background color
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetGapMajorColor(COLORREF GapMajorColor)
{
rgbGapMajor = GapMajorColor; // display Grid color
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetGapMinorColor(COLORREF GapMinorColor)
{
rgbGapMinor = GapMinorColor; // display Gap color
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
COLORREF Display::GetBackgroundColor(void)
{
return rgbBackground;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
COLORREF Display::GetGapMajorColor(void)
{
return rgbGapMajor;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
COLORREF Display::GetGapMinorColor(void)
{
return rgbGapMinor;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::GetGridMajor(int* x, int* y)
{
*x = GridXmajor;
*y = GridYmajor;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::GetGridMinor(int* x, int* y)
{
*x = GridXminor;
*y = GridYminor;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetGridMajor(int x, int y)
{
GridXmajor = x;
GridYmajor = y;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetGridMinor(int x, int y) {
GridXminor = x;
GridYminor = y;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::GetGapMajor(int* xwidth, int* ywidth)
{
*xwidth = GapXmajor;
*ywidth = GapYmajor;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::GetGapMinor(int* xwidth, int* ywidth) {
*xwidth = GapXminor;
*ywidth = GapYminor;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetGapMajor(int xwidth, int ywidth) {
GapXmajor = xwidth;
GapYmajor = ywidth;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
int Display::SetGapMinor(int xwidth, int ywidth) {
GapXminor = xwidth;
GapYminor = ywidth;
return APP_SUCCESS;
};
//*******************************************************************************
//
// GetColors(COLORREF* BackgroundColor, COLORREF* GapMajorColor, COLORREF* GapMinorColor)
//
//*******************************************************************************
void Display::CalculateDisplayExtent(int ImageXextent, int ImageYextent) {
// make sure the clusters are valid
if (GridXmajor <= 0) GridXmajor = 1;
if (GridYmajor <= 0) GridYmajor = 1;
if (GridXminor <= 0) GridXminor = 1;
if (GridYminor <= 0) GridYminor = 1;
if (GapXmajor < 0) GapXmajor = 0;
if (GapYmajor < 0) GapYmajor = 0;
if (GapXminor < 0) GapXminor = 0;
if (GapYminor < 0) GapYminor = 0;
// change ImageExtent to make sure clusters can be accomodated.
// This is only used in this calculation, it does not actually change
// the Overlay image extent.
// This may result in extra space on the right and bottom of the
// displayed image that doesn't have image overlay data.
// ImageXextent adjusted to be multiple of GridXmajor*GridXminor
if (ImageXextent % (GridXmajor * GridXminor) != 0) {
// adjust ImageExtent size
ImageXextent = ImageXextent + ((GridXmajor * GridXminor) - (ImageXextent % (GridXmajor * GridXminor)));
}
// ImageYextent adjusted to be multiple of GridYmajor*GridYminor
if (ImageYextent % (GridYmajor * GridYminor) != 0) {
// adjust ImageExtent size
ImageYextent = ImageYextent + ((GridYmajor * GridYminor) - (ImageYextent % (GridYmajor * GridYminor)));
}
// there are four cases for the gaps when calculating the display extent
//
// Gap Major Minor
// ==0 ==0
// ==0 !=0
// !=0 ==0
// !=0 !=0
//
// The overall display is surrounded by a frame of MajorGap size
//
if (GridEnabled) {
if (GapYmajor == 0 && GapYminor == 0) {
NumberMajorYgap = 0;
NumberMinorYgap = 0;
DisplayYextent = ImageYextent;
}
else if (GapYmajor == 0 && GapYminor != 0) {
NumberMajorYgap = 0;
NumberMinorYgap = (ImageYextent / GridYminor) - 1;
DisplayYextent = ImageYextent + NumberMinorYgap * GapYminor;
}
else if (GapYmajor != 0 && GapYminor == 0) {
NumberMajorYgap = (ImageYextent / (GridYmajor * GridYminor)) + 1;
NumberMinorYgap = 0;
DisplayYextent = ImageYextent + NumberMajorYgap * GapYmajor;
}
else { // GapYmajor != 0 && GapYminor != 0
NumberMajorYgap = (ImageYextent / (GridYmajor * GridYminor)) + 1;
NumberMinorYgap = (GridYmajor - 1) * (NumberMajorYgap - 1);
DisplayYextent = ImageYextent +
(NumberMajorYgap * GapYmajor) +
(NumberMinorYgap * GapYminor);
}
}
else {
NumberMajorYgap = 0;
NumberMinorYgap = 0;
DisplayYextent = ImageYextent;
}
if (GridEnabled) {
if (GapXmajor == 0 && GapXminor == 0) {
NumberMajorXgap = 0;
NumberMinorXgap = 0;
DisplayXextent = ImageXextent;
}
else if (GapXmajor == 0 && GapXminor != 0) {
NumberMajorXgap = 0;
NumberMinorXgap = (ImageXextent / GridXminor) - 1;
DisplayXextent = ImageXextent + NumberMinorXgap * GapXminor;
}
else if (GapXmajor != 0 && GapXminor == 0) {
NumberMajorXgap = (ImageXextent / (GridXmajor * GridXminor)) + 1;
NumberMinorXgap = 0;
DisplayXextent = ImageXextent + NumberMajorXgap * GapXmajor;
}
else { // GapYmajor != 0 && GapYminor != 0
NumberMajorXgap = (ImageXextent / (GridXmajor * GridXminor)) + 1;
NumberMinorXgap = (GridXmajor - 1) * (NumberMajorXgap - 1);
DisplayXextent = ImageXextent +
(NumberMajorXgap * GapXmajor) +
(NumberMinorXgap * GapXminor);
}
}
else {
NumberMajorXgap = 0;
NumberMinorXgap = 0;
DisplayXextent = ImageXextent;
}
return;
}
//*******************************************************************************
//
// int SaveBMP(WCHAR* Filename)
//
// This returns the current layer
//
//*******************************************************************************
int Display::SaveBMP(WCHAR* Filename, int Select) {
if (wcslen(Filename) == 0) {
return APPERR_PARAMETER;
}
int iRes;
if (Select == 0) {
if (DisplayImage == NULL) {
return APPERR_PARAMETER;
}
iRes = SaveImageBMP(Filename, DisplayImage, DisplayXextent, DisplayYextent);
} else {
if (DisplayReference == NULL) {
return APPERR_PARAMETER;
}
iRes = SaveImageBMP(Filename, DisplayReference, DisplayXextent, DisplayYextent);
}
return iRes;
}
//*******************************************************************************
//
// int LoadConfiguration(WCHAR* szFilename)
//
// This returns the current layer
//
//*******************************************************************************
void Display::LoadConfiguration(WCHAR* szFilename)
{
int x, y;
COLORREF Color;
x = (int) GetPrivateProfileInt(L"Display", L"GridXmajor",1, (LPCTSTR)szFilename);
y = (int) GetPrivateProfileInt(L"Display", L"GridYmajor",1, (LPCTSTR)szFilename);
SetGridMajor(x, y);
x = (int) GetPrivateProfileInt(L"Display", L"GridXminor", 1, (LPCTSTR)szFilename);
y = (int) GetPrivateProfileInt(L"Display", L"GridYminor", 1, (LPCTSTR)szFilename);
SetGridMinor(x, y);
x = (int) GetPrivateProfileInt(L"Display", L"GapXmajor", 0, (LPCTSTR)szFilename);
y = (int) GetPrivateProfileInt(L"Display", L"GapYmajor", 0, (LPCTSTR)szFilename);
SetGapMajor(x, y);
x = (int)GetPrivateProfileInt(L"Display", L"GapXminor", 0, (LPCTSTR)szFilename);
y = (int)GetPrivateProfileInt(L"Display", L"GapYminor", 0, (LPCTSTR)szFilename);
SetGapMinor(x, y);
Color = GetPrivateProfileInt(L"Display", L"rgbBackground", 10, (LPCTSTR)szFilename);
SetBackgroundColor(Color);
Color = GetPrivateProfileInt(L"Display", L"rgbGapMajor", 30, (LPCTSTR)szFilename);
SetGapMajorColor(Color);
Color = GetPrivateProfileInt(L"Display", L"rgbGapMinor", 20, (LPCTSTR)szFilename);
SetGapMinorColor(Color);
return;
}
//*******************************************************************************
//
// SaveConfiguration(WCHAR* szFilename)
//
// This returns the current layer
//
//*******************************************************************************
int Display::SaveConfiguration(WCHAR* szFilename)
{
int x, y;
COLORREF Color;
WCHAR szString[40];
GetGridMajor(&x, &y);
swprintf_s(szString, 40, L"%d", x);
WritePrivateProfileString(L"Display", L"GridXmajor", szString, (LPCTSTR)szFilename);
swprintf_s(szString, 40, L"%d", y);
WritePrivateProfileString(L"Display", L"GridYmajor", szString, (LPCTSTR)szFilename);
GetGridMinor(&x, &y);
swprintf_s(szString, 40, L"%d", x);
WritePrivateProfileString(L"Display", L"GridXminor", szString, (LPCTSTR)szFilename);
swprintf_s(szString, 40, L"%d", y);
WritePrivateProfileString(L"Display", L"GridYminor", szString, (LPCTSTR)szFilename);
GetGapMajor(&x, &y);
swprintf_s(szString, 40, L"%d", x);
WritePrivateProfileString(L"Display", L"GapXmajor", szString, (LPCTSTR)szFilename);
swprintf_s(szString, 40, L"%d", y);
WritePrivateProfileString(L"Display", L"GapYmajor", szString, (LPCTSTR)szFilename);
GetGapMinor(&x, &y);
swprintf_s(szString, 40, L"%d", x);
WritePrivateProfileString(L"Display", L"GapXminor", szString, (LPCTSTR)szFilename);
swprintf_s(szString, 40, L"%d", y);
WritePrivateProfileString(L"Display", L"GapYminor", szString, (LPCTSTR)szFilename);
Color = GetBackgroundColor();
swprintf_s(szString, 40, L"%u", Color);
WritePrivateProfileString(L"Display", L"rgbBackground", szString, (LPCTSTR)szFilename);
Color = GetGapMajorColor();
swprintf_s(szString, 40, L"%u", Color);
WritePrivateProfileString(L"Display", L"rgbGapMajor", szString, (LPCTSTR)szFilename);
Color = GetGapMinorColor();
swprintf_s(szString, 40, L"%u", Color);
WritePrivateProfileString(L"Display", L"rgbGapMinor", szString, (LPCTSTR)szFilename);
return APP_SUCCESS;
}
//*******************************************************************************
//
// int GetDisplay(COLORREF** Image, int* xsize, int* ysize)
//
//*******************************************************************************
int Display::GetDisplay(COLORREF** Image, int* xsize, int* ysize)
{
*Image = DisplayImage;
*xsize = DisplayXextent;
*ysize = DisplayYextent;
return APP_SUCCESS;
}
//*******************************************************************************
//
// BOOL Display::GetSize(int* x, int* y)
//
//*******************************************************************************
BOOL Display::Display::GetSize(int* x, int* y)
{
if (DisplayYextent == 0) {
*x = 0;
*y = 0;
return FALSE;
}
*x = DisplayXextent;
*y = DisplayYextent;
return TRUE;
}