forked from spoutn1k/mcmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
draw_png.cpp
1089 lines (1034 loc) · 38 KB
/
draw_png.cpp
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
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* This file contains functions to create and draw to a png image
*/
#include "draw_png.h"
#include "helper.h"
#include "colors.h"
#include "globals.h"
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <png.h>
#include <list>
#include <ctime>
#ifndef _WIN32
#include <sys/stat.h>
#endif
#if defined(_WIN32) && !defined(__GNUC__)
# include <direct.h>
#endif
#ifndef Z_BEST_SPEED
# define Z_BEST_SPEED 6
#endif
#define PIXEL(x,y) (gImageBuffer[((x) + gOffsetX) * CHANSPERPIXEL + ((y) + gOffsetY) * gPngLocalLineWidthChans])
namespace
{
struct ImagePart {
int x, y, width, height;
char *filename;
FILE *pngFileHandle;
png_structp pngPtr;
png_infop pngInfo;
ImagePart(const char *_file, int _x, int _y, int _w, int _h) {
filename = strdup(_file);
x = _x;
y = _y;
width = _w;
height = _h;
pngPtr = NULL;
pngFileHandle = NULL;
pngInfo = NULL;
}
~ImagePart() {
free(filename);
}
};
struct ImageTile {
FILE *fileHandle;
png_structp pngPtr;
png_infop pngInfo;
};
typedef std::list<ImagePart *> imageList;
imageList partialImages;
uint8_t *gImageBuffer = NULL;
int gPngLocalLineWidthChans = 0, gPngLocalWidth = 0, gPngLocalHeight = 0;
int gPngLineWidthChans = 0, gPngWidth = 0, gPngHeight = 0;
int gOffsetX = 0, gOffsetY = 0;
uint64_t gPngSize = 0, gPngLocalSize = 0;
png_structp pngPtrMain = NULL; // Main image
png_infop pngInfoPtrMain = NULL;
png_structp pngPtrCurrent = NULL; // This will be either the same as above, or a temp image when using disk caching
FILE *gPngPartialFileHandle = NULL;
inline void blend(uint8_t * const destination, const uint8_t * const source);
inline void modColor(uint8_t * const color, const int mod);
inline void addColor(uint8_t * const color, const uint8_t * const add);
// Split them up so setPixel won't be one hell of a mess
void setSnow(const size_t x, const size_t y, const uint8_t * const color);
void setTorch(const size_t x, const size_t y, const uint8_t * const color);
void setFlower(const size_t x, const size_t y, const uint8_t * const color);
void setRedwire(const size_t x, const size_t y, const uint8_t * const color);
void setFire(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark);
void setGrass(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark, const int sub);
void setFence(const size_t x, const size_t y, const uint8_t * const color);
void setStep(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark);
# define setRailroad setSnowBA
// Then make duplicate copies so it is one hell of a mess
// ..but hey, its for speeeeeeeeed!
void setSnowBA(const size_t x, const size_t y, const uint8_t * const color);
void setTorchBA(const size_t x, const size_t y, const uint8_t * const color);
void setFlowerBA(const size_t x, const size_t y, const uint8_t * const color);
void setGrassBA(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark, const int sub);
void setStepBA(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark);
}
void createImageBuffer(const size_t width, const size_t height, const bool splitUp)
{
gPngLocalWidth = gPngWidth = (int)width;
gPngLocalHeight = gPngHeight = (int)height;
gPngLocalLineWidthChans = gPngLineWidthChans = gPngWidth * CHANSPERPIXEL;
gPngSize = gPngLocalSize = (uint64_t)gPngLineWidthChans * (uint64_t)gPngHeight;
printf("Image dimensions are %dx%d, 32bpp, %.2fMiB\n", gPngWidth, gPngHeight, float(gPngSize / float(1024 * 1024)));
if (!splitUp) {
gImageBuffer = new uint8_t[gPngSize];
memset(gImageBuffer, 0, (size_t)gPngSize);
}
}
bool createImage(FILE *fh, const size_t width, const size_t height, const bool splitUp)
{
gPngLocalWidth = gPngWidth = (int)width;
gPngLocalHeight = gPngHeight = (int)height;
gPngLocalLineWidthChans = gPngLineWidthChans = gPngWidth * 4;
gPngSize = gPngLocalSize = (uint64_t)gPngLineWidthChans * (uint64_t)gPngHeight;
printf("Image dimensions are %dx%d, 32bpp, %.2fMiB\n", gPngWidth, gPngHeight, float(gPngSize / float(1024 * 1024)));
if (!splitUp) {
gImageBuffer = new uint8_t[gPngSize];
memset(gImageBuffer, 0, (size_t)gPngSize);
}
fseek64(fh, 0, SEEK_SET);
// Write header
pngPtrMain = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (pngPtrMain == NULL) {
return false;
}
pngInfoPtrMain = png_create_info_struct(pngPtrMain);
if (pngInfoPtrMain == NULL) {
png_destroy_write_struct(&pngPtrMain, NULL);
return false;
}
if (setjmp(png_jmpbuf(pngPtrMain))) { // libpng will issue a longjmp on error, so code flow will end up
png_destroy_write_struct(&pngPtrMain, &pngInfoPtrMain); // here if something goes wrong in the code below
return false;
}
png_init_io(pngPtrMain, fh);
png_set_IHDR(pngPtrMain, pngInfoPtrMain, (uint32_t)width, (uint32_t)height,
8, PNG_COLOR_TYPE_RGBA, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_text title_text;
title_text.compression = PNG_TEXT_COMPRESSION_NONE;
title_text.key = (png_charp)"Software";
title_text.text = (png_charp)"mcmap";
png_set_text(pngPtrMain, pngInfoPtrMain, &title_text, 1);
png_write_info(pngPtrMain, pngInfoPtrMain);
if (!splitUp) {
pngPtrCurrent = pngPtrMain;
}
return true;
}
bool saveImage()
{
if (g_TilePath == NULL) {
// Normal single-file output
if (setjmp(png_jmpbuf(pngPtrMain))) { // libpng will issue a longjmp on error, so code flow will end up
png_destroy_write_struct(&pngPtrMain, &pngInfoPtrMain); // here if something goes wrong in the code below
return false;
}
uint8_t *srcLine = gImageBuffer;
printf("Writing to file...\n");
for (int y = 0; y < gPngHeight; ++y) {
if (y % 25 == 0) {
printProgress(size_t(y), size_t(gPngHeight));
}
png_write_row(pngPtrMain, (png_bytep)srcLine);
srcLine += gPngLineWidthChans;
}
printProgress(10, 10);
png_write_end(pngPtrMain, NULL);
png_destroy_write_struct(&pngPtrMain, &pngInfoPtrMain);
//
} else {
// Tiled output, suitable for google maps
printf("Writing to files...\n");
size_t tmpLen = strlen(g_TilePath) + 40;
char *tmpString = new char[tmpLen];
// Prepare a temporary buffer to copy the current line to, since we need the width to be a multiple of 4096
// and adjusting the whole image to that would be a waste of memory
const size_t tempWidth = ((gPngWidth - 5) / 4096 + 1) * 4096;
const size_t tempWidthChans = tempWidth * CHANSPERPIXEL;
#ifdef _DEBUG
printf("Temp width: %d, original width: %d\n", (int)tempWidthChans, (int)gPngLineWidthChans);
#endif
uint8_t *tempLine = new uint8_t[tempWidthChans];
memset(tempLine, 0, tempWidth * BYTESPERPIXEL);
// Source pointer
uint8_t *srcLine = gImageBuffer;
// Prepare an array of png structs that will output simultaneously to the various tiles
size_t sizeOffset[7], last = 0;
for (size_t i = 0; i < 7; ++i) {
sizeOffset[i] = last;
last += ((tempWidth - 1) / pow(2, 12 - i)) + 1;
}
ImageTile *tile = new ImageTile[sizeOffset[6]];
memset(tile, 0, sizeOffset[6] * sizeof(ImageTile));
for (int y = 0; y < gPngHeight; ++y) {
if (y % 25 == 0) {
printProgress(size_t(y), size_t(gPngHeight));
}
memcpy(tempLine, srcLine, gPngLineWidthChans);
srcLine += gPngLineWidthChans;
// Handle all png files
if (y % 128 == 0) {
size_t start;
if (y % 4096 == 0) start = 0;
else if (y % 2048 == 0) start = 1;
else if (y % 1024 == 0) start = 2;
else if (y % 512 == 0) start = 3;
else if (y % 256 == 0) start = 4;
else start = 5;
for (size_t tileSize = start; tileSize < 6; ++tileSize) {
const size_t tileWidth = pow(2, 12 - tileSize);
for (size_t tileIndex = sizeOffset[tileSize]; tileIndex < sizeOffset[tileSize+1]; ++tileIndex) {
ImageTile &t = tile[tileIndex];
if (t.fileHandle != NULL) { // Unload/close first
//printf("Calling end with ptr == %p, y == %d, start == %d, tileSize == %d, tileIndex == %d, to == %d, numpng == %d\n",
//t.pngPtr, y, (int)start, (int)tileSize, (int)tileIndex, (int)sizeOffset[tileSize+1], (int)numpng);
png_write_end(t.pngPtr, NULL);
png_destroy_write_struct(&(t.pngPtr), &(t.pngInfo));
fclose(t.fileHandle);
t.fileHandle = NULL;
}
if (tileWidth * (tileIndex - sizeOffset[tileSize]) < size_t(gPngWidth)) {
// Open new tile file for a while
snprintf(tmpString, tmpLen, "%s/x%dy%dz%d.png", g_TilePath,
int(tileIndex - sizeOffset[tileSize]), int((y / pow(2, 12 - tileSize))), int(tileSize));
#ifdef _DEBUG
printf("Starting tile %s of size %d...\n", tmpString, (int)pow(2, 12 - tileSize));
#endif
t.fileHandle = fopen(tmpString, "wb");
if (t.fileHandle == NULL) {
printf("Error opening file!\n");
return false;
}
t.pngPtr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (t.pngPtr == NULL) {
printf("Error creating png write struct!\n");
return false;
}
if (setjmp(png_jmpbuf(t.pngPtr))) {
return false;
}
t.pngInfo = png_create_info_struct(t.pngPtr);
if (t.pngInfo == NULL) {
printf("Error creating png info struct!\n");
png_destroy_write_struct(&(t.pngPtr), NULL);
return false;
}
png_init_io(t.pngPtr, t.fileHandle);
png_set_IHDR(t.pngPtr, t.pngInfo,
uint32_t(pow(2, 12 - tileSize)), uint32_t(pow(2, 12 - tileSize)),
8, PNG_COLOR_TYPE_RGBA, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_write_info(t.pngPtr, t.pngInfo);
}
}
}
} // done preparing tiles
// Write data to all current tiles
for (size_t tileSize = 0; tileSize < 6; ++tileSize) {
const size_t tileWidth = pow(2, 12 - tileSize);
for (size_t tileIndex = sizeOffset[tileSize]; tileIndex < sizeOffset[tileSize+1]; ++tileIndex) {
if (tile[tileIndex].fileHandle == NULL) continue;
png_write_row(tile[tileIndex].pngPtr, png_bytep(tempLine + tileWidth * (tileIndex - sizeOffset[tileSize]) * CHANSPERPIXEL));
}
} // done writing line
} // done with whole image
// Now the last set of tiles is not finished, so do that manually
memset(tempLine, 0, tempWidth * BYTESPERPIXEL);
for (size_t tileSize = 0; tileSize < 6; ++tileSize) {
const size_t tileWidth = pow(2, 12 - tileSize);
for (size_t tileIndex = sizeOffset[tileSize]; tileIndex < sizeOffset[tileSize+1]; ++tileIndex) {
if (tile[tileIndex].fileHandle == NULL) continue;
const int imgEnd = (((gPngHeight - 1) / tileWidth) + 1) * tileWidth;
for (int i = gPngHeight; i < imgEnd; ++i) {
png_write_row(tile[tileIndex].pngPtr, png_bytep(tempLine));
}
png_write_end(tile[tileIndex].pngPtr, NULL);
png_destroy_write_struct(&(tile[tileIndex].pngPtr), &(tile[tileIndex].pngInfo));
fclose(tile[tileIndex].fileHandle);
}
}
printProgress(10, 10);
}
return true;
}
/**
* @return 0 = OK, -1 = Error, 1 = Zero/Negative size
*/
int loadImagePart(const int startx, const int starty, const int width, const int height)
{
// These are set to NULL in saveImahePartPng to make sure the two functions are called in turn
if (pngPtrCurrent != NULL || gPngPartialFileHandle != NULL) {
printf("Something wrong with disk caching.\n");
return -1;
}
// In case the image needs to be cropped the offsets will be negative
gOffsetX = MIN(startx, 0);
gOffsetY = MIN(starty, 0);
gPngLocalWidth = width;
gPngLocalHeight = height;
int localX = startx;
int localY = starty;
// Also modify gPngLocalWidth and gPngLocalHeight in these cases
if (localX < 0) {
gPngLocalWidth += localX;
localX = 0;
}
if (localY < 0) {
gPngLocalHeight += localY;
localY = 0;
}
if (localX + gPngLocalWidth > gPngWidth) {
gPngLocalWidth = gPngWidth - localX;
}
if (localY + gPngLocalHeight > gPngHeight) {
gPngLocalHeight = gPngHeight - localY;
}
if (gPngLocalWidth < 1 || gPngLocalHeight < 1) return 1;
char name[200];
snprintf(name, 200, "cache/%d.%d.%d.%d.%d.png", localX, localY, gPngLocalWidth, gPngLocalHeight, (int)time(NULL));
ImagePart *img = new ImagePart(name, localX, localY, gPngLocalWidth, gPngLocalHeight);
partialImages.push_back(img);
// alloc mem for image and open tempfile
gPngLocalLineWidthChans = gPngLocalWidth * CHANSPERPIXEL;
uint64_t size = (uint64_t)gPngLocalLineWidthChans * (uint64_t)gPngLocalHeight;
printf("Creating temporary image: %dx%d, 32bpp, %.2fMiB\n", gPngLocalWidth, gPngLocalHeight, float(size / float(1024 * 1024)));
if (gImageBuffer == NULL) {
gImageBuffer = new uint8_t[size];
gPngLocalSize = size;
} else if (size > gPngLocalSize) {
delete[] gImageBuffer;
gImageBuffer = new uint8_t[size];
gPngLocalSize = size;
}
memset(gImageBuffer, 0, (size_t)size);
// Create temp image
// This is done here to detect early if the target is not writable
#ifdef _WIN32
mkdir("cache");
#else
mkdir("cache", 0755);
#endif
gPngPartialFileHandle = fopen(name, "wb");
if (gPngPartialFileHandle == NULL) {
printf("Could not create temporary image at %s; check permissions in current dir.\n", name);
return -1;
}
return 0;
}
bool saveImagePart()
{
if (gPngPartialFileHandle == NULL || pngPtrCurrent != NULL) {
printf("saveImagePart() called in bad state.\n");
return false;
}
// Write header
png_infop info_ptr = NULL;
pngPtrCurrent = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (pngPtrCurrent == NULL) {
return false;
}
info_ptr = png_create_info_struct(pngPtrCurrent);
if (info_ptr == NULL) {
png_destroy_write_struct(&pngPtrCurrent, NULL);
return false;
}
if (setjmp(png_jmpbuf(pngPtrCurrent))) { // libpng will issue a longjmp on error, so code flow will end up
png_destroy_write_struct(&pngPtrCurrent, &info_ptr); // here if something goes wrong in the code below
return false;
}
png_init_io(pngPtrCurrent, gPngPartialFileHandle);
png_set_compression_level(pngPtrCurrent, Z_BEST_SPEED);
png_set_IHDR(pngPtrCurrent, info_ptr, (uint32_t)gPngLocalWidth, (uint32_t)gPngLocalHeight,
8, PNG_COLOR_TYPE_RGBA, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_write_info(pngPtrCurrent, info_ptr);
//
uint8_t *line = gImageBuffer;
for (int y = 0; y < gPngLocalHeight; ++y) {
png_write_row(pngPtrCurrent, (png_bytep)line);
line += gPngLocalLineWidthChans;
}
png_write_end(pngPtrCurrent, NULL);
png_destroy_write_struct(&pngPtrCurrent, &info_ptr);
pngPtrCurrent = NULL;
fclose(gPngPartialFileHandle);
gPngPartialFileHandle = NULL;
return true;
}
bool discardImagePart()
{
if (gPngPartialFileHandle == NULL || pngPtrCurrent != NULL) {
printf("discardImagePart() called in bad state.\n");
return false;
}
fclose(gPngPartialFileHandle);
gPngPartialFileHandle = NULL;
ImagePart *img = partialImages.back();
remove(img->filename);
delete img;
partialImages.pop_back();
return true;
}
bool composeFinalImage()
{
char *tmpString = NULL;
size_t tmpLen = 0;
if (g_TilePath == NULL) {
printf("Composing final png file...\n");
if (setjmp(png_jmpbuf(pngPtrMain))) {
png_destroy_write_struct(&pngPtrMain, NULL);
return false;
}
} else {
// Tiled output, suitable for google maps
printf("Composing final png files...\n");
tmpLen = strlen(g_TilePath) + 40;
tmpString = new char[tmpLen];
// Prepare a temporary buffer to copy the current line to, since we need the width to be a multiple of 4096
// and adjusting the whole image to that would be a waste of memory
}
const size_t tempWidth = (g_TilePath == NULL ? gPngLineWidthChans : ((gPngWidth - 5) / 4096 + 1) * 4096);
const size_t tempWidthChans = tempWidth * CHANSPERPIXEL;
uint8_t *lineWrite = new uint8_t[tempWidthChans];
uint8_t *lineRead = new uint8_t[gPngLineWidthChans];
// Prepare an array of png structs that will output simultaneously to the various tiles
size_t sizeOffset[7], last = 0;
ImageTile *tile = NULL;
if (g_TilePath != NULL) {
for (size_t i = 0; i < 7; ++i) {
sizeOffset[i] = last;
last += ((tempWidth - 1) / pow(2, 12 - i)) + 1;
}
tile = new ImageTile[sizeOffset[6]];
memset(tile, 0, sizeOffset[6] * sizeof(ImageTile));
}
for (int y = 0; y < gPngHeight; ++y) {
if (y % 100 == 0) {
printProgress(size_t(y), size_t(gPngHeight));
}
// paint each image on this one
memset(lineWrite, 0, tempWidthChans);
// the partial images are kept in this list. they're already in the correct order in which they have to me merged and blended
for (imageList::iterator it = partialImages.begin(); it != partialImages.end(); it++) {
ImagePart *img = *it;
// do we have to open this image?
if (img->y == y && img->pngPtr == NULL) {
img->pngFileHandle = fopen(img->filename, "rb");
if (img->pngFileHandle == NULL) {
printf("Error opening temporary image %s\n", img->filename);
return false;
}
img->pngPtr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (img->pngPtr == NULL) {
printf("Error creating read struct for temporary image %s\n", img->filename);
return false; // Not really cleaning up here, but program will terminate anyways, so why bother
}
img->pngInfo = png_create_info_struct(img->pngPtr);
if (img->pngInfo == NULL || setjmp(png_jmpbuf(img->pngPtr))) {
printf("Error reading data from temporary image %s\n", img->filename);
return false; // Same here
}
png_init_io(img->pngPtr, img->pngFileHandle);
png_read_info(img->pngPtr, img->pngInfo);
// Check if image dimensions match what is expected
int type, interlace, comp, filter, bitDepth;
png_uint_32 width, height;
png_uint_32 ret = png_get_IHDR(img->pngPtr, img->pngInfo, &width, &height, &bitDepth, &type, &interlace, &comp, &filter);
if (ret == 0 || width != (png_uint_32)img->width || height != (png_uint_32)img->height) {
printf("Temp image %s has wrong dimensions; expected %dx%d, got %dx%d\n", img->filename, img->width, img->height, (int)width, (int)height);
return false;
}
}
// Here, the image is either open and ready for reading another line, or its not open when it doesn't have to be copied/blended here, or is already finished
if (img->pngPtr == NULL) {
continue; // Not your turn, image!
}
// Read next line from current image chunk
png_read_row(img->pngPtr, (png_bytep)lineRead, NULL);
// Now this puts all the pixels in the right spot of the current line of the final image
const uint8_t *end = lineWrite + (img->x + img->width) * CHANSPERPIXEL;
uint8_t *read = lineRead;
for (uint8_t *write = lineWrite + (img->x * CHANSPERPIXEL); write < end; write += CHANSPERPIXEL) {
blend(write, read);
read += CHANSPERPIXEL;
}
// Now check if we're done with this image chunk
if (--(img->height) == 0) { // if so, close and discard
png_destroy_read_struct(&(img->pngPtr), &(img->pngInfo), NULL);
fclose(img->pngFileHandle);
img->pngFileHandle = NULL;
img->pngPtr = NULL;
remove(img->filename);
}
}
// Done composing this line, write to final image
if (g_TilePath == NULL) {
// Single file
png_write_row(pngPtrMain, (png_bytep)lineWrite);
} else {
// Tiled output
// Handle all png files
if (y % 128 == 0) {
size_t start;
if (y % 4096 == 0) start = 0;
else if (y % 2048 == 0) start = 1;
else if (y % 1024 == 0) start = 2;
else if (y % 512 == 0) start = 3;
else if (y % 256 == 0) start = 4;
else start = 5;
for (size_t tileSize = start; tileSize < 6; ++tileSize) {
const size_t tileWidth = pow(2, 12 - tileSize);
for (size_t tileIndex = sizeOffset[tileSize]; tileIndex < sizeOffset[tileSize+1]; ++tileIndex) {
ImageTile &t = tile[tileIndex];
if (t.fileHandle != NULL) { // Unload/close first
//printf("Calling end with ptr == %p, y == %d, start == %d, tileSize == %d, tileIndex == %d, to == %d, numpng == %d\n",
//t.pngPtr, y, (int)start, (int)tileSize, (int)tileIndex, (int)sizeOffset[tileSize+1], (int)numpng);
png_write_end(t.pngPtr, NULL);
png_destroy_write_struct(&(t.pngPtr), &(t.pngInfo));
fclose(t.fileHandle);
t.fileHandle = NULL;
}
if (tileWidth * (tileIndex - sizeOffset[tileSize]) < size_t(gPngWidth)) {
// Open new tile file for a while
snprintf(tmpString, tmpLen, "%s/x%dy%dz%d.png", g_TilePath,
int(tileIndex - sizeOffset[tileSize]), int((y / pow(2, 12 - tileSize))), int(tileSize));
#ifdef _DEBUG
printf("Starting tile %s of size %d...\n", tmpString, (int)pow(2, 12 - tileSize));
#endif
t.fileHandle = fopen(tmpString, "wb");
if (t.fileHandle == NULL) {
printf("Error opening file!\n");
return false;
}
t.pngPtr = png_create_write_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (t.pngPtr == NULL) {
printf("Error creating png write struct!\n");
return false;
}
if (setjmp(png_jmpbuf(t.pngPtr))) {
return false;
}
t.pngInfo = png_create_info_struct(t.pngPtr);
if (t.pngInfo == NULL) {
printf("Error creating png info struct!\n");
png_destroy_write_struct(&(t.pngPtr), NULL);
return false;
}
png_init_io(t.pngPtr, t.fileHandle);
png_set_IHDR(t.pngPtr, t.pngInfo,
uint32_t(pow(2, 12 - tileSize)), uint32_t(pow(2, 12 - tileSize)),
8, PNG_COLOR_TYPE_RGBA, PNG_INTERLACE_NONE,
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
png_write_info(t.pngPtr, t.pngInfo);
}
}
}
} // done preparing tiles
// Write data to all current tiles
for (size_t tileSize = 0; tileSize < 6; ++tileSize) {
const size_t tileWidth = pow(2, 12 - tileSize);
for (size_t tileIndex = sizeOffset[tileSize]; tileIndex < sizeOffset[tileSize+1]; ++tileIndex) {
if (tile[tileIndex].fileHandle == NULL) continue;
png_write_row(tile[tileIndex].pngPtr, png_bytep(lineWrite + tileWidth * (tileIndex - sizeOffset[tileSize]) * CHANSPERPIXEL));
}
} // done writing line
//
}
// Y-Loop
}
if (g_TilePath == NULL) {
png_write_end(pngPtrMain, NULL);
png_destroy_write_struct(&pngPtrMain, &pngInfoPtrMain);
} else {
// Finish all current tiles
memset(lineWrite, 0, tempWidth * BYTESPERPIXEL);
for (size_t tileSize = 0; tileSize < 6; ++tileSize) {
const size_t tileWidth = pow(2, 12 - tileSize);
for (size_t tileIndex = sizeOffset[tileSize]; tileIndex < sizeOffset[tileSize+1]; ++tileIndex) {
if (tile[tileIndex].fileHandle == NULL) continue;
const int imgEnd = (((gPngHeight - 1) / tileWidth) + 1) * tileWidth;
for (int i = gPngHeight; i < imgEnd; ++i) {
png_write_row(tile[tileIndex].pngPtr, png_bytep(lineWrite));
}
png_write_end(tile[tileIndex].pngPtr, NULL);
png_destroy_write_struct(&(tile[tileIndex].pngPtr), &(tile[tileIndex].pngInfo));
fclose(tile[tileIndex].fileHandle);
}
}
}
printProgress(10, 10);
delete[] lineWrite;
delete[] lineRead;
return true;
}
uint64_t calcImageSize(const int mapChunksX, const int mapChunksZ, const size_t mapHeight, int &pixelsX, int &pixelsY, const bool tight)
{
pixelsX = (mapChunksX * CHUNKSIZE_X + mapChunksZ * CHUNKSIZE_Z) * 2 + (tight ? 3 : 10);
pixelsY = (mapChunksX * CHUNKSIZE_X + mapChunksZ * CHUNKSIZE_Z + int(mapHeight) * g_OffsetY) + (tight ? 3 : 10);
return uint64_t(pixelsX) * BYTESPERPIXEL * uint64_t(pixelsY);
}
void setPixel(const size_t x, const size_t y, const uint8_t color, const float fsub)
{
// Sets pixels around x,y where A is the anchor
// T = given color, D = darker, L = lighter
// A T T T
// D D L L
// D D L L
// D L
// First determine how much the color has to be lightened up or darkened
int sub = int(fsub * (float(colors[color][BRIGHTNESS]) / 323.0f + .21f)); // The brighter the color, the stronger the impact
uint8_t L[CHANSPERPIXEL], D[CHANSPERPIXEL], c[CHANSPERPIXEL];
// Now make a local copy of the color that we can modify just for this one block
memcpy(c, colors[color], BYTESPERPIXEL);
modColor(c, sub);
if (g_BlendAll) {
// Then check the block type, as some types will be drawn differently
if (color == SNOW || color == TRAPDOOR) {
setSnowBA(x, y, c);
return;
}
if (color == TORCH || color == REDTORCH_ON || color == REDTORCH_OFF) {
setTorchBA(x, y, c);
return;
}
if (color == FLOWERR || color == FLOWERY || color == MUSHROOMB || color == MUSHROOMR || color == MELON_STEM || color == PUMPKIN_STEM || color == SHRUB || color == COBWEB) {
setFlowerBA(x, y, c);
return;
}
if (color == FENCE || color == FENCE_GATE || color == VINES || color == IRON_BARS) {
setFence(x, y, c);
return;
}
if (color == REDWIRE) {
setRedwire(x, y, c);
return;
}
if (color == RAILROAD || color == POW_RAILROAD || color == DET_RAILROAD) {
setRailroad(x, y, c);
return;
}
// All the above blocks didn't need the shaded down versions of the color, so we only calc them here
// They are for the sides of blocks
memcpy(L, c, BYTESPERPIXEL);
memcpy(D, c, BYTESPERPIXEL);
modColor(L, -17);
modColor(D, -27);
// A few more blocks with special handling... Those need the two colors we just mixed
if (color == GRASS) {
setGrassBA(x, y, c, L, D, sub);
return;
}
if (color == FIRE || color == TALL_GRASS) {
setFire(x, y, c, L, D);
return;
}
if (color == STEP || color == CAKE || color == BED || color == SANDSTEP || color == WOODSTEP || color == COBBLESTEP) {
setStepBA(x, y, c, L, D);
return;
}
} else {
// Then check the block type, as some types will be drawn differently
if (color == SNOW || color == TRAPDOOR) {
setSnow(x, y, c);
return;
}
if (color == TORCH || color == REDTORCH_ON || color == REDTORCH_OFF) {
setTorch(x, y, c);
return;
}
if (color == FLOWERR || color == FLOWERY || color == MUSHROOMB || color == MUSHROOMR || color == MELON_STEM || color == PUMPKIN_STEM || color == SHRUB || color == COBWEB) {
setFlower(x, y, c);
return;
}
if (color == FENCE || color == FENCE_GATE || color == VINES || color == IRON_BARS) {
setFence(x, y, c);
return;
}
if (color == REDWIRE) {
setRedwire(x, y, c);
return;
}
if (color == RAILROAD || color == POW_RAILROAD || color == DET_RAILROAD) {
setRailroad(x, y, c);
return;
}
// All the above blocks didn't need the shaded down versions of the color, so we only calc them here
// They are for the sides of blocks
memcpy(L, c, BYTESPERPIXEL);
memcpy(D, c, BYTESPERPIXEL);
modColor(L, -17);
modColor(D, -27);
// A few more blocks with special handling... Those need the two colors we just mixed
if (color == GRASS) {
setGrass(x, y, c, L, D, sub);
return;
}
if (color == FIRE || color == TALL_GRASS) {
setFire(x, y, c, L, D);
return;
}
if (color == STEP || color == CAKE || color == BED || color == SANDSTEP || color == WOODSTEP || color == COBBLESTEP) {
setStep(x, y, c, L, D);
return;
}
}
// In case the user wants noise, calc the strength now, depending on the desired intensity and the block's brightness
int noise = 0;
if (g_Noise && colors[color][NOISE]) {
noise = int(float(g_Noise * colors[color][NOISE]) * (float(GETBRIGHTNESS(c) + 10) / 2650.0f));
}
// Ordinary blocks are all rendered the same way
if (c[PALPHA] == 255) { // Fully opaque - faster
// Top row
uint8_t *pos = &PIXEL(x, y);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, c, BYTESPERPIXEL);
if (noise) {
modColor(pos, rand() % (noise * 2) - noise);
}
}
// Second row
pos = &PIXEL(x, y+1);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, (i < 2 ? D : L), BYTESPERPIXEL);
// The weird check here is to get the pattern right, as the noise should be stronger
// every other row, but take into account the isometric perspective
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 1 : 2));
}
}
// Third row
pos = &PIXEL(x, y+2);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, (i < 2 ? D : L), BYTESPERPIXEL);
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 2 : 1));
}
}
// Last row
pos = &PIXEL(x, y+3);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, (i < 2 ? D : L), BYTESPERPIXEL);
// The weird check here is to get the pattern right, as the noise should be stronger
// every other row, but take into account the isometric perspective
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 1 : 2));
}
}
} else { // Not opaque, use slower blending code
// Top row
uint8_t *pos = &PIXEL(x, y);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
blend(pos, c);
if (noise) {
modColor(pos, rand() % (noise * 2) - noise);
}
}
// Second row
pos = &PIXEL(x, y+1);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
blend(pos, (i < 2 ? D : L));
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 1 : 2));
}
}
// Third row
pos = &PIXEL(x, y+2);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
blend(pos, (i < 2 ? D : L));
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 2 : 1));
}
}
// Last row
pos = &PIXEL(x, y+3);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
blend(pos, (i < 2 ? D : L));
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 1 : 2));
}
}
}
// The above two branches are almost the same, maybe one could just create a function pointer and...
}
void blendPixel(const size_t x, const size_t y, const uint8_t color, const float fsub)
{
// This one is used for cave overlay
// Sets pixels around x,y where A is the anchor
// T = given color, D = darker, L = lighter
// A T T T
// D D L L
// D D L L
// D L
uint8_t L[CHANSPERPIXEL], D[CHANSPERPIXEL], c[CHANSPERPIXEL];
// Now make a local copy of the color that we can modify just for this one block
memcpy(c, colors[color], BYTESPERPIXEL);
c[PALPHA] = clamp(int(float(c[PALPHA]) * fsub)); // The brighter the color, the stronger the impact
// They are for the sides of blocks
memcpy(L, c, BYTESPERPIXEL);
memcpy(D, c, BYTESPERPIXEL);
modColor(L, -17);
modColor(D, -27);
// In case the user wants noise, calc the strength now, depending on the desired intensity and the block's brightness
int noise = 0;
if (g_Noise && colors[color][NOISE]) {
noise = int(float(g_Noise * colors[color][NOISE]) * (float(GETBRIGHTNESS(c) + 10) / 2650.0f));
}
// Top row
uint8_t *pos = &PIXEL(x, y);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
blend(pos, c);
if (noise) {
modColor(pos, rand() % (noise * 2) - noise);
}
}
// Second row
pos = &PIXEL(x, y+1);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
blend(pos, (i < 2 ? D : L));
if (noise) {
modColor(pos, rand() % (noise * 2) - noise * (i == 0 || i == 3 ? 1 : 2));
}
}
}
namespace
{
inline void blend(uint8_t * const destination, const uint8_t * const source)
{
if (destination[PALPHA] == 0 || source[PALPHA] == 255) {
memcpy(destination, source, BYTESPERPIXEL);
return;
}
# define BLEND(ca,aa,cb) uint8_t(((size_t(ca) * size_t(aa)) + (size_t(255 - aa) * size_t(cb))) / 255)
destination[0] = BLEND(source[0], source[PALPHA], destination[0]);
destination[1] = BLEND(source[1], source[PALPHA], destination[1]);
destination[2] = BLEND(source[2], source[PALPHA], destination[2]);
destination[PALPHA] += (size_t(source[PALPHA]) * size_t(255 - destination[PALPHA])) / 255;
}
inline void modColor(uint8_t * const color, const int mod)
{
color[0] = clamp(color[0] + mod);
color[1] = clamp(color[1] + mod);
color[2] = clamp(color[2] + mod);
}
inline void addColor(uint8_t * const color, const uint8_t * const add)
{
const float v2 = (float(add[PALPHA]) / 255.0f);
const float v1 = (1.0f - (v2 * .2f));
color[0] = clamp(uint16_t(float(color[0]) * v1 + float(add[0]) * v2));
color[1] = clamp(uint16_t(float(color[1]) * v1 + float(add[1]) * v2));
color[2] = clamp(uint16_t(float(color[2]) * v1 + float(add[2]) * v2));
}
void setSnow(const size_t x, const size_t y, const uint8_t * const color)
{
// Top row (second row)
uint8_t *pos = &PIXEL(x, y+1);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, color, BYTESPERPIXEL);
}
}
void setTorch(const size_t x, const size_t y, const uint8_t * const color)
{
// Maybe the orientation should be considered when drawing, but it probably isn't worth the efford
uint8_t *pos = &PIXEL(x+2, y+1);
memcpy(pos, color, BYTESPERPIXEL);
pos = &PIXEL(x+2, y+2);
memcpy(pos, color, BYTESPERPIXEL);
}
void setFlower(const size_t x, const size_t y, const uint8_t * const color)
{
uint8_t *pos = &PIXEL(x, y+1);
memcpy(pos+(CHANSPERPIXEL), color, BYTESPERPIXEL);
memcpy(pos+(CHANSPERPIXEL*3), color, BYTESPERPIXEL);
pos = &PIXEL(x+2, y+2);
memcpy(pos, color, BYTESPERPIXEL);
pos = &PIXEL(x+1, y+3);
memcpy(pos, color, BYTESPERPIXEL);
}
void setFire(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark)
{
// This basically just leaves out a few pixels
// Top row
uint8_t *pos = &PIXEL(x, y);
blend(pos, light);
blend(pos + CHANSPERPIXEL*2, dark);
// Second and third row
for (size_t i = 1; i < 3; ++i) {
pos = &PIXEL(x, y+i);
blend(pos, dark);
blend(pos+(CHANSPERPIXEL*i), color);
blend(pos+(CHANSPERPIXEL*3), light);
}
// Last row
pos = &PIXEL(x, y+3);
blend(pos+(CHANSPERPIXEL*2), light);
}
void setGrass(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark, const int sub)
{
// this will make grass look like dirt from the side
uint8_t L[CHANSPERPIXEL], D[CHANSPERPIXEL];
memcpy(L, colors[DIRT], BYTESPERPIXEL);
memcpy(D, colors[DIRT], BYTESPERPIXEL);
modColor(L, sub - 15);
modColor(D, sub - 25);
// consider noise
int noise = 0;
if (g_Noise && colors[GRASS][NOISE]) {
noise = int(float(g_Noise * colors[GRASS][NOISE]) * (float(GETBRIGHTNESS(color) + 10) / 2650.0f));
}
// Top row
uint8_t *pos = &PIXEL(x, y);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, color, BYTESPERPIXEL);
if (noise) {
modColor(pos, rand() % (noise * 2) - noise);
}
}
// Second row
pos = &PIXEL(x, y+1);
memcpy(pos, dark, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL, dark, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL*2, light, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL*3, light, BYTESPERPIXEL);
// Third row
pos = &PIXEL(x, y+2);
memcpy(pos, D, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL, D, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL*2, L, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL*3, L, BYTESPERPIXEL);
// Last row
pos = &PIXEL(x, y+3);
memcpy(pos, D, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL, D, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL*2, L, BYTESPERPIXEL);
memcpy(pos+CHANSPERPIXEL*3, L, BYTESPERPIXEL);
}
void setFence(const size_t x, const size_t y, const uint8_t * const color)
{
// First row
uint8_t *pos = &PIXEL(x, y);
blend(pos+CHANSPERPIXEL, color);
blend(pos+CHANSPERPIXEL*2, color);
// Second row
pos = &PIXEL(x+1, y+1);
blend(pos, color);
// Third row
pos = &PIXEL(x, y+2);
blend(pos+CHANSPERPIXEL, color);
blend(pos+CHANSPERPIXEL*2, color);
}
void setStep(const size_t x, const size_t y, const uint8_t * const color, const uint8_t * const light, const uint8_t * const dark)
{
uint8_t *pos = &PIXEL(x, y+1);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, color, BYTESPERPIXEL);
}
pos = &PIXEL(x, y+2);
for (size_t i = 0; i < 4; ++i, pos += CHANSPERPIXEL) {
memcpy(pos, color, BYTESPERPIXEL);
}
}
void setRedwire(const size_t x, const size_t y, const uint8_t * const color)
{
uint8_t *pos = &PIXEL(x+1, y+2);