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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
|
//
// Copyright 2013 Pixar
//
// Licensed under the Apache License, Version 2.0 (the "Apache License")
// with the following modification; you may not use this file except in
// compliance with the Apache License and the following modification to it:
// Section 6. Trademarks. is deleted and replaced with:
//
// 6. Trademarks. This License does not grant permission to use the trade
// names, trademarks, service marks, or product names of the Licensor
// and its affiliates, except as required to comply with Section 4(c) of
// the License and to reproduce the content of the NOTICE file.
//
// You may obtain a copy of the Apache License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the Apache License with the above modification is
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the Apache License for the specific
// language governing permissions and limitations under the Apache License.
//
#include "ptexMipmapTextureLoader.h"
#include <vector>
#include <list>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cassert>
// sample neighbor pixels and populate around blocks
void
PtexMipmapTextureLoader::Block::guttering(PtexMipmapTextureLoader *loader,
PtexTexture *ptex, int level,
int wid, int hei,
unsigned char *pptr, int bpp,
int stride)
{
int lineBufferSize = std::max(wid, hei) * bpp;
unsigned char * lineBuffer = new unsigned char[lineBufferSize];
for (int edge = 0; edge < 4; edge++) {
int len = (edge == 0 || edge == 2) ? wid : hei;
loader->sampleNeighbor(lineBuffer, this->index, edge, len, bpp);
unsigned char *s = lineBuffer, *d;
for (int j = 0; j < len; ++j) {
d = pptr;
switch (edge) {
case Ptex::e_bottom:
d += bpp * (j + 1);
break;
case Ptex::e_right:
d += stride * (j + 1) + bpp * (wid+1);
break;
case Ptex::e_top:
d += stride * (hei+1) + bpp*(len-j);
break;
case Ptex::e_left:
d += stride * (len-j);
break;
}
for (int k = 0; k < bpp; k++)
*d++ = *s++;
}
}
delete[] lineBuffer;
// fix corner pixels
int numchannels = ptex->numChannels();
float *accumPixel = new float[numchannels];
int uv[4][2] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}};
for (int edge = 0; edge < 4; edge++) {
int du = uv[edge][0];
int dv = uv[edge][1];
/* There are 3 cases when filling a corner pixel on gutter.
case 1: Regular 4 valence
We already have correct 'B' and 'C' pixels by edge
resampling above.
so here only one more pixel 'D' is needed,
and it will be placed on the gutter corner.
+-----+-----+
| | |<-current
| B|A |
+-----*-----+
| D|C |
| | |
+-----+-----+
case 2: T-vertex case (note that this doesn't mean 3 valence)
If the current face comes from non-quad root face, there
could be a T-vertex on its corner. Just like case 1,
need to fill border corner with pixel 'D'.
+-----+-----+
| | |<-current
| B|A |
| *-----+
| D|C |
| | |
+-----+-----+
case 3: Other than 4 valence case
(everything else, including boundary)
Since guttering pixels are placed on the border of each
ptex faces, it's not possible to store more than 4 pixels
at a corner for a reasonable interpolation.
In this case, we need to average all corner pixels and
overwrite with an averaged value, so that every face
vertex picks the same value.
+---+---+
| | |<-current
| B|A |
+---*---|
| D/E\C |
| / \ |
|/ \|
+-------+
*/
// seamless mipmap only works with square faces.
if (loader->getCornerPixel(accumPixel, numchannels,
this->index, edge, (int8_t)(this->ulog2-level))) {
// case1, case 2
if (edge == 1 || edge == 2) du += wid;
if (edge == 2 || edge == 3) dv += hei;
unsigned char *d = pptr + dv*stride + du*bpp;
Ptex::ConvertFromFloat(d, accumPixel,
ptex->dataType(), numchannels);
} else {
// case 3, set accumPixel to the corner 4 pixels
if (edge == 1 || edge == 2) du += wid - 1;
if (edge == 2 || edge == 3) dv += hei - 1;
for (int x = 0; x < 2; ++x) {
for (int y = 0; y < 2; ++y) {
unsigned char *d = pptr + (dv+x)*stride + (du+y)*bpp;
Ptex::ConvertFromFloat(d, accumPixel,
ptex->dataType(), numchannels);
}
}
}
}
delete[] accumPixel;
}
void
PtexMipmapTextureLoader::Block::Generate(PtexMipmapTextureLoader *loader,
PtexTexture *ptex,
unsigned char *destination,
int bpp, int wid, int maxLevels)
{
const Ptex::FaceInfo &faceInfo = ptex->getFaceInfo(index);
int stride = bpp * wid;
int ulog2_ = this->ulog2;
int vlog2_ = this->vlog2;
int level = 0;
int uofs = u, vofs = v;
// The minimum size of non-subface is 4x4, so that it matches with adjacent
// 2x2 subfaces.
int limit = faceInfo.isSubface() ? 1 : 2;
// but if the base size is already less than limit, we'd like to pick it
// instead of nothing.
limit = std::min(std::min(limit, ulog2_), vlog2_);
while (ulog2_ >= limit && vlog2_ >= limit
&& (maxLevels == -1 || level <= maxLevels)) {
if (level % 2 == 1)
uofs += (1<<(ulog2_+1))+2;
if ((level > 0) && (level % 2 == 0))
vofs += (1<<(vlog2_+1)) + 2;
unsigned char *dst = destination + vofs * stride + uofs * bpp;
unsigned char *dstData = destination
+ (vofs + 1) * stride
+ (uofs + 1) * bpp;
ptex->getData(index, dstData, stride, Ptex::Res(ulog2_, vlog2_));
guttering(loader, ptex, level, 1<<ulog2_, 1<<vlog2_, dst, bpp, stride);
--ulog2_;
--vlog2_;
++level;
}
nMipmaps = level;
}
void
PtexMipmapTextureLoader::Block::SetSize(unsigned char ulog2_,
unsigned char vlog2_, bool mipmap)
{
ulog2 = ulog2_;
vlog2 = vlog2_;
int w = 1 << ulog2;
int h = 1 << vlog2;
// includes mipmap
if (mipmap) {
w = w + w/2 + 4;
h = h + 2;
}
width = (int16_t)w;
height = (int16_t)h;
}
// ---------------------------------------------------------------------------
struct PtexMipmapTextureLoader::Page
{
struct Slot
{
Slot(uint16_t u_, uint16_t v_,
uint16_t w_, uint16_t h_) :
u(u_), v(v_), width(w_), height(h_) { }
uint16_t u, v, width, height;
// returns true if a block can fit in this slot
bool Fits(const Block *block) {
return (block->width <= width) && (block->height <= height);
}
};
typedef std::list<Block *> BlockList;
Page(uint16_t width, uint16_t height) {
_slots.push_back(Slot(0, 0, width, height));
}
bool IsFull() const {
return _slots.empty();
}
// true when the block "b" is successfully added to this page :
//
// |--------------------------| |------------|-------------|
// | | |............| |
// | | |............| |
// | | |.... B .....| Right Slot |
// | | |............| |
// | | |............| |
// | | |------------|-------------|
// | Original Slot | ==> | |
// | | | |
// | | | Bottom Slot |
// | | | |
// | | | |
// |--------------------------| |--------------------------|
//
bool AddBlock(Block *block) {
for (SlotList::iterator it = _slots.begin(); it != _slots.end(); ++it) {
if (it->Fits(block)) {
_blocks.push_back(block);
block->u = it->u;
block->v = it->v;
// add new slot to the right
if (it->width > block->width) {
_slots.push_front(Slot(it->u + block->width,
it->v,
it->width - block->width,
block->height));
}
// add new slot to the bottom
if (it->height > block->height) {
_slots.push_back(Slot(it->u,
it->v + block->height,
it->width,
it->height - block->height));
}
_slots.erase(it);
return true;
}
}
return false;
}
void Generate(PtexMipmapTextureLoader *loader, PtexTexture *ptex,
unsigned char *destination,
int bpp, int width, int maxLevels) {
for (BlockList::iterator it = _blocks.begin();
it != _blocks.end(); ++it) {
(*it)->Generate(loader, ptex, destination, bpp, width, maxLevels);
}
}
const BlockList &GetBlocks() const {
return _blocks;
}
void Dump() const {
for (BlockList::const_iterator it = _blocks.begin();
it != _blocks.end(); ++it) {
printf(" (%d, %d) %d x %d\n",
(*it)->u, (*it)->v, (*it)->width, (*it)->height);
}
}
private:
BlockList _blocks;
typedef std::list<Slot> SlotList;
SlotList _slots;
};
// ---------------------------------------------------------------------------
// Utility class for Ptex corner iteration
class PtexMipmapTextureLoader::CornerIterator
{
public:
CornerIterator(PtexTexture *ptex, int face, int edge, int8_t reslog2) :
_ptex(ptex),
_startFace(face), _startEdge(edge),
_currentFace(face), _currentEdge(edge), _reslog2(reslog2),
_clockWise(true), _mid(false), _done(false), _isBoundary(true) {
_numChannels = _ptex->numChannels();
_currentInfo = _ptex->getFaceInfo(_currentFace);
if (_currentInfo.isSubface()) ++_reslog2;
}
int GetCurrentFace() const {
return _currentFace;
}
void GetPixel(float *resultPixel) {
int8_t r = (int8_t)(_currentInfo.isSubface() ? _reslog2 - 1 : _reslog2);
// limit to the maximum ptex resolution
r = std::min(std::min(r, _currentInfo.res.ulog2),
_currentInfo.res.vlog2);
Ptex::Res res(r, r);
int uv[4][2] = {{0, 0}, {1, 0}, {1, 1}, {0, 1}};
int u = uv[_currentEdge][0] * (res.u()-1);
int v = uv[_currentEdge][1] * (res.v()-1);
_ptex->getPixel(_currentFace, u, v, resultPixel, 0, _numChannels, res);
}
bool IsDone() const {
return _done;
}
bool IsSubface() const {
return _currentInfo.isSubface();
}
bool IsBoundary() const {
return _isBoundary;
}
void Next() {
if (_done) return;
// next face
Ptex::FaceInfo info = _ptex->getFaceInfo(_currentFace);
if (_clockWise) {
_currentFace = info.adjface(_currentEdge);
if (_mid) {
_currentFace = _ptex->getFaceInfo(_currentFace).adjface(2);
_currentEdge = 1;
_mid = false;
} else if (info.isSubface() &&
(! _ptex->getFaceInfo(_currentFace).isSubface()) &&
_currentEdge == 3) {
_mid = true;
_currentEdge = info.adjedge(_currentEdge);
} else {
_mid = false;
_currentEdge = info.adjedge(_currentEdge);
_currentEdge = (_currentEdge+1)%4;
}
} else {
_currentFace = info.adjface((_currentEdge+3)%4);
_currentEdge = info.adjedge((_currentEdge+3)%4);
}
if (_currentFace == -1) {
// border case.
if (_clockWise) {
// reset position and restart counter clock wise
Ptex::FaceInfo sinfo = _ptex->getFaceInfo(_startFace);
_currentFace = sinfo.adjface((_startEdge+3)%4);
_currentEdge = sinfo.adjedge((_startEdge+3)%4);
_clockWise = false;
} else {
// end
_done = true;
return;
}
}
Ptex::FaceInfo nextFaceInfo = _ptex->getFaceInfo(_currentFace);
if ((! _clockWise) &&
(! info.isSubface()) && (nextFaceInfo.isSubface())) {
// needs tricky traverse for boundary subface...
if (_currentEdge == 3) {
_currentFace = nextFaceInfo.adjface(2);
_currentEdge = 0;
}
}
if (_currentFace == -1) {
_done = true;
return;
}
if (_currentFace == _startFace) {
_done = true;
_isBoundary = false;
return;
}
_currentInfo = _ptex->getFaceInfo(_currentFace);
}
private:
PtexTexture *_ptex;
int _numChannels;
int _startFace, _startEdge;
int _currentFace, _currentEdge;
int8_t _reslog2;
bool _clockWise;
bool _mid;
bool _done;
bool _isBoundary;
Ptex::FaceInfo _currentInfo;
};
// ---------------------------------------------------------------------------
PtexMipmapTextureLoader::PtexMipmapTextureLoader(PtexTexture *ptex,
int maxNumPages,
int maxLevels,
size_t targetMemory,
bool seamlessMipmap,
bool padAlpha) :
_ptex(ptex), _maxLevels(maxLevels), _bpp(0),
_pageWidth(0), _pageHeight(0),
_texelBuffer(NULL), _layoutBuffer(NULL), _memoryUsage(0)
{
// bytes per pixel
_bpp = ptex->numChannels() * Ptex::DataSize(ptex->dataType());
int numFaces = ptex->numFaces();
_blocks.resize(numFaces);
for (int i = 0; i < numFaces; ++i) {
const Ptex::FaceInfo &faceInfo = ptex->getFaceInfo(i);
_blocks[i].index = i;
if (seamlessMipmap) {
// need to squarize ptex face
unsigned char s = std::min(faceInfo.res.ulog2, faceInfo.res.vlog2);
_blocks[i].SetSize(s, s, _maxLevels != 0);
} else {
_blocks[i].SetSize(faceInfo.res.ulog2,
faceInfo.res.vlog2,
_maxLevels != 0);
}
}
optimizePacking(maxNumPages, targetMemory);
generateBuffers();
if (padAlpha) {
addAlphaChannel();
}
}
PtexMipmapTextureLoader::~PtexMipmapTextureLoader()
{
for (size_t i = 0; i < _pages.size(); ++i) {
delete _pages[i];
}
delete _texelBuffer;
delete _layoutBuffer;
}
// add alpha channel to texelbuffer :
// assumes the texel buffer has been generated and apply a raw copy
// into a larger buffer with an alpha channel padded in
// note : this is not a particularly elegant solution...
void
PtexMipmapTextureLoader::addAlphaChannel() {
assert(_ptex);
// allocate new larger texel buffer
int bpc = Ptex::DataSize(_ptex->dataType()),
srcStride = _ptex->numChannels() * bpc,
dstStride = srcStride + bpc;
size_t numTexels = _pageWidth * _pageHeight * _pages.size(),
memoryUsed = dstStride * numTexels;
unsigned char * texBuffer = new unsigned char[memoryUsed];
// loop over every texel & copy + pad
unsigned char const * src = _texelBuffer;
unsigned char * dest = texBuffer;
for (int i=0; i<(int)numTexels; ++i, src+=srcStride, dest+=dstStride) {
memcpy(dest, src, srcStride);
/// set alpha to 1
switch (_ptex->dataType()) {
case Ptex::dt_uint8 : *(uint8_t *)(dest+srcStride)= 0xFF; break;
case Ptex::dt_uint16 : *(uint16_t *)(dest+srcStride) = 0xFFFF; break;
case Ptex::dt_half : *(uint16_t *)(dest+srcStride) = 0x3C00; break;
case Ptex::dt_float : *(float *)(dest+srcStride) = 1.0f; break;
}
}
// remove old buffer & adjust class members
delete [] _texelBuffer;
_texelBuffer = texBuffer;
_memoryUsage = memoryUsed;
_bpp = dstStride;
}
// resample border texels for guttering
//
int
PtexMipmapTextureLoader::resampleBorder(int face, int edgeId,
unsigned char *result,
int dstLength, int bpp,
float srcStart, float srcEnd)
{
Ptex::Res res(_blocks[face].ulog2, _blocks[face].vlog2);
int edgeLength = (edgeId == 0 || edgeId == 2) ? res.u() : res.v();
int srcOffset = (int)(srcStart*edgeLength);
int srcLength = (int)((srcEnd-srcStart)*edgeLength);
if (dstLength >= srcLength) {
// copy or up sampling (nearest)
PtexFaceData * data = _ptex->getData(face, res);
unsigned char *border = new unsigned char[bpp*srcLength];
// order of the result will be flipped to match adjacent pixel order
for (int i = 0; i < srcLength; ++i) {
int u = 0, v = 0;
if (edgeId == Ptex::e_bottom) {
u = edgeLength-1-(i+srcOffset);
v = 0;
} else if (edgeId == Ptex::e_right) {
u = res.u()-1;
v = edgeLength-1-(i+srcOffset);
} else if (edgeId == Ptex::e_top) {
u = i+srcOffset;
v = res.v()-1;
} else if (edgeId == Ptex::e_left) {
u = 0;
v = i+srcOffset;
}
data->getPixel(u, v, &border[i*bpp]);
}
// nearest resample to fit dstLength
for (int i = 0; i < dstLength; ++i) {
for (int j = 0; j < bpp; j++) {
result[i*bpp+j] = border[(i*srcLength/dstLength)*bpp+j];
}
}
data->release();
delete[] border;
} else {
// down sampling
while (srcLength > dstLength && res.ulog2 && res.vlog2) {
--res.ulog2;
--res.vlog2;
srcLength /= 2;
}
PtexFaceData * data = _ptex->getData(face, res);
unsigned char *border = new unsigned char[bpp*srcLength];
edgeLength = (edgeId == 0 || edgeId == 2) ? res.u() : res.v();
srcOffset = (int)(srcStart*edgeLength);
for (int i = 0; i < dstLength; ++i) {
int u = 0, v = 0;
if (edgeId == Ptex::e_bottom) {
u = edgeLength-1-(i+srcOffset);
v = 0;
} else if (edgeId == Ptex::e_right) {
u = res.u() - 1;
v = edgeLength-1-(i+srcOffset);
} else if (edgeId == Ptex::e_top) {
u = i+srcOffset;
v = res.v() - 1;
} else if (edgeId == Ptex::e_left) {
u = 0;
v = i+srcOffset;
}
data->getPixel(u, v, &border[i*bpp]);
for (int j = 0; j < bpp; ++j) {
result[i*bpp+j] = border[i*bpp+j];
}
}
data->release();
delete[] border;
}
return srcLength;
}
// flip order of pixel buffer
static void
flipBuffer(unsigned char *buffer, int length, int bpp)
{
for (int i = 0; i < length/2; ++i) {
for (int j = 0; j < bpp; j++) {
std::swap(buffer[i*bpp+j], buffer[(length-1-i)*bpp+j]);
}
}
}
// sample neighbor face's edge
void
PtexMipmapTextureLoader::sampleNeighbor(unsigned char *border, int face,
int edge, int length, int bpp)
{
const Ptex::FaceInfo &fi = _ptex->getFaceInfo(face);
// copy adjacent borders
int adjface = fi.adjface(edge);
if (adjface != -1) {
int ae = fi.adjedge(edge);
if (!fi.isSubface() && _ptex->getFaceInfo(adjface).isSubface()) {
/* nonsubface -> subface (1:0.5) see http://ptex.us/adjdata.html for more detail
+------------------+
| face |
+--------edge------+
| adj face | |
+----------+-------+
*/
resampleBorder(adjface, ae, border, length/2, bpp);
const Ptex::FaceInfo &sfi1 = _ptex->getFaceInfo(adjface);
adjface = sfi1.adjface((ae+3)%4);
ae = (sfi1.adjedge((ae+3)%4)+3)%4;
resampleBorder(adjface, ae, border+(length/2*bpp),
length/2, bpp);
} else if (fi.isSubface() && !_ptex->getFaceInfo(adjface).isSubface()) {
/* subface -> nonsubface (0.5:1). two possible configuration
case 1 case 2
+----------+----------+ +----------+----------+--------+
| face | B | | | face | B |
+---edge---+----------+ +----------+--edge----+--------+
|0.0 0.5 1.0| |0.0 0.5 1.0|
| adj face | | adj face |
+---------------------+ +---------------------+
*/
int Bf = fi.adjface((edge+1)%4);
int Be = fi.adjedge((edge+1)%4);
int f = _ptex->getFaceInfo(Bf).adjface((Be+1)%4);
int e = _ptex->getFaceInfo(Bf).adjedge((Be+1)%4);
if (f == adjface && e == ae) // case 1
resampleBorder(adjface, ae, border,
length, bpp, 0.0, 0.5);
else // case 2
resampleBorder(adjface, ae, border,
length, bpp, 0.5, 1.0);
} else {
/* ordinary case (1:1 match)
+------------------+
| face |
+--------edge------+
| adj face |
+----------+-------+
*/
resampleBorder(adjface, ae, border, length, bpp);
}
} else {
/* border edge. duplicate itself
+-----------------+
| face |
+-------edge------+
*/
resampleBorder(face, edge, border, length, bpp);
flipBuffer(border, length, bpp);
}
}
// get corner pixel by traversing all adjacent faces around vertex
//
bool
PtexMipmapTextureLoader::getCornerPixel(float *resultPixel, int numchannels,
int face, int edge,
int8_t reslog2)
{
const Ptex::FaceInfo &fi = _ptex->getFaceInfo(face);
/*
see http://ptex.us/adjdata.html Figure 2 for the reason of conditions edge==1 and 3
*/
if (fi.isSubface() && edge == 3) {
/*
in T-vertex case, this function sets 'D' pixel value to *resultPixel and returns false
gutter line
|
+------+-------+
| | |
| D|C |<-- gutter line
| *-------+
| B|A [2] |
| |[3] [1]|
| | [0] |
+------+-------+
*/
int adjface = fi.adjface(edge);
if (adjface != -1 && !_ptex->getFaceInfo(adjface).isSubface()) {
int adjedge = fi.adjedge(edge);
Ptex::Res res(std::min((int)_blocks[adjface].ulog2, reslog2+1),
std::min((int)_blocks[adjface].vlog2, reslog2+1));
int uv[2] = {0, 0};
if (adjedge == 0) {
uv[0] = res.u()/2;
uv[1] = 0;
} else if (adjedge == 1) {
uv[0] = res.u()-1;
uv[1] = res.v()/2;
} else if (adjedge == 2) {
uv[0] = res.u()/2-1;
uv[1] = res.v()-1;
} else {
uv[0] = 0;
uv[1] = res.v()/2-1;
}
_ptex->getPixel(adjface, uv[0], uv[1],
resultPixel, 0, numchannels, res);
return true;
}
}
if (fi.isSubface() && edge == 1) {
/* gutter line
|
+------+-------+
| | [3] |
| |[0] [2]|
| B|A [1] |
| *-------+
| D|C |<-- gutter line
| | |
+------+-------+
note: here we're focusing on vertex A which corresponds to the edge 1,
but the edge 0 is an adjacent edge to get D pixel.
*/
int adjface = fi.adjface(0);
if (adjface != -1 && !_ptex->getFaceInfo(adjface).isSubface()) {
int adjedge = fi.adjedge(0);
Ptex::Res res(std::min((int)_blocks[adjface].ulog2, reslog2+1),
std::min((int)_blocks[adjface].vlog2, reslog2+1));
int uv[2] = {0, 0};
if (adjedge == 0) {
uv[0] = res.u()/2-1;
uv[1] = 0;
} else if (adjedge == 1) {
uv[0] = res.u()-1;
uv[1] = res.v()/2-1;
} else if (adjedge == 2) {
uv[0] = res.u()/2;
uv[1] = res.v()-1;
} else {
uv[0] = 0;
uv[1] = res.v()/2;
}
_ptex->getPixel(adjface, uv[0], uv[1],
resultPixel, 0, numchannels, res);
return true;
}
}
float *pixel = (float*)alloca(sizeof(float)*numchannels);
float *accumPixel = (float*)alloca(sizeof(float)*numchannels);
// clear accum pixel
memset(accumPixel, 0, sizeof(float)*numchannels);
// iterate faces around the vertex
int numFaces = 0;
CornerIterator it(_ptex, face, edge, reslog2);
for (; !it.IsDone(); it.Next(), ++numFaces) {
it.GetPixel(pixel);
// accumulate pixel value
for (int j = 0; j < numchannels; ++j) {
accumPixel[j] += pixel[j];
if (numFaces == 2) {
// also save the diagonal pixel for regular corner case
resultPixel[j] = pixel[j];
}
}
}
// if regular corner, returns diagonal pixel without averaging
if (numFaces == 4 && (! it.IsBoundary())) {
return true;
}
// non-4 valence. let's average and return false;
for (int j = 0; j < numchannels; ++j) {
resultPixel[j] = accumPixel[j]/numFaces;
}
return false;
}
int
PtexMipmapTextureLoader::getLevelDiff(int face, int edge)
{
// returns the highest mipmap level difference around the vertex
// at face/edge
Ptex::FaceInfo faceInfo = _ptex->getFaceInfo(face);
// note: seamless interpolation only works for square tex faces.
int8_t baseRes = _blocks[face].ulog2;
if (faceInfo.isSubface()) ++baseRes;
int maxDiff = 0;
CornerIterator it(_ptex, face, edge, baseRes);
for (; !it.IsDone(); it.Next()) {
int res = _blocks[it.GetCurrentFace()].ulog2;
if (it.IsSubface()) ++res;
maxDiff = std::max(maxDiff, baseRes - res);
}
return maxDiff;
}
void
PtexMipmapTextureLoader::optimizePacking(int maxNumPages,
size_t targetMemory)
{
size_t numTexels = 0;
// prepare a list of pointers
typedef std::vector<Block> BlockArray;
typedef std::list<Block *> BlockPtrList;
BlockPtrList blocks;
for (BlockArray::iterator it = _blocks.begin(); it != _blocks.end(); ++it) {
blocks.push_back(&(*it));
numTexels += it->GetNumTexels();
}
// sort blocks by height-width order
blocks.sort(Block::sort);
// try to fit into the target memory size if specified
if (targetMemory != 0 && _bpp * numTexels > targetMemory) {
size_t numTargetTexels = targetMemory / _bpp;
while (numTexels > numTargetTexels) {
Block *block = blocks.front();
if (block->ulog2 < 2 || block->vlog2 < 2) break;
// pick a smaller mipmap
numTexels -= block->GetNumTexels();
block->SetSize((unsigned char)(block->ulog2-1),
(unsigned char)(block->vlog2-1), _maxLevels != 0);
numTexels += block->GetNumTexels();
// move to the last
blocks.pop_front();
blocks.push_back(block);
}
}
// compute page size ---------------------------------------------
{
// page size is set to the largest edge of the largest block :
// this is the smallest possible page size, which should minimize
// the texels wasted on the "last page" when the smallest blocks are
// being packed.
int w = 0, h = 0;
for (BlockPtrList::iterator it = blocks.begin();
it != blocks.end(); ++it) {
w = std::max(w, (int)(*it)->width);
h = std::max(h, (int)(*it)->height);
}
// grow the page size to make sure the optimization will not exceed
// the maximum number of pages allowed
int minPageSize = 512;
int maxPageSize = 4096; // XXX:should be configurable.
// use minPageSize if too small
if (w < minPageSize) w = w*(minPageSize/w + 1);
if (h < minPageSize) h = h*(minPageSize/h + 1);
// rough estimate of num pages
int estimatedNumPages = (int)numTexels/w/h;
// if expecting too many pages, increase page size
int pageLimit = std::max(1, maxNumPages/2);
if (estimatedNumPages > pageLimit) {
w = std::min(w*(estimatedNumPages/pageLimit), maxPageSize);
estimatedNumPages = (int)numTexels/w/h;
}
if (estimatedNumPages > pageLimit) {
h = std::min(h*(estimatedNumPages/pageLimit), maxPageSize);
}
_pageWidth = w;
_pageHeight = h;
}
// pack blocks into slots ----------------------------------------
size_t firstslot = 0;
for (BlockPtrList::iterator it = blocks.begin();
it != blocks.end(); ++it) {
Block *block = *it;
// traverse existing pages for a suitable slot ---------------
bool added = false;
for (size_t p = firstslot; p < _pages.size(); ++p) {
if ((added = _pages[p]->AddBlock(block)) == true) {
break;
}
}
// if none of page was found : start new page
if (!added) {
Page *page = new Page(_pageWidth, _pageHeight);
added = page->AddBlock(block);
assert(added);
_pages.push_back(page);
}
// adjust the page flag to the first page with open slots
if (_pages.size() > (firstslot+1) &&
_pages[firstslot+1]->IsFull()) ++firstslot;
}
// set corner pixel mipmap factors
for (BlockArray::iterator it = _blocks.begin(); it != _blocks.end(); ++it) {
int face = it->index;
uint16_t adjSizeDiffs = 0;
for (int edge = 0; edge < 4; ++edge) {
int levelDiff = getLevelDiff(face, edge);
adjSizeDiffs <<= 4;
adjSizeDiffs |= (uint16_t)levelDiff;
}
it->adjSizeDiffs = adjSizeDiffs;
// printf("Block %d, %08x\n", it->index, adjSizeDiffs);
}
#if 0
for (size_t i = 0; i < _pages.size(); ++i) {
printf("Page %ld : \n", i);
_pages[i]->Dump();
}
#endif
}
void
PtexMipmapTextureLoader::generateBuffers()
{
// ptex layout struct
// struct Layout {
// uint16_t page;
// uint16_t nMipmap;
// uint16_t u;
// uint16_t v;
// uint16_t adjSizeDiffs; //(4:4:4:4)
// uint8_t width log2;
// uint8_t height log2;
// };
int numFaces = (int)_blocks.size();
int numPages = (int)_pages.size();
// populate the texels
int pageStride = _bpp * _pageWidth * _pageHeight;
_texelBuffer = new unsigned char[pageStride * numPages];
_memoryUsage = pageStride * numPages;
memset(_texelBuffer, 0, pageStride * numPages);
for (int i = 0; i < numPages; ++i) {
_pages[i]->Generate(this, _ptex, _texelBuffer + pageStride * i,
_bpp, _pageWidth, _maxLevels);
}
// populate the layout texture buffer
_layoutBuffer = new unsigned char[numFaces * sizeof(uint16_t) * 6];
_memoryUsage += numFaces * sizeof(uint16_t) * 6;
for (int i = 0; i < numPages; ++i) {
Page *page = _pages[i];
for (Page::BlockList::const_iterator it = page->GetBlocks().begin();
it != page->GetBlocks().end(); ++it) {
int ptexIndex = (*it)->index;
uint16_t *p = (uint16_t*)(_layoutBuffer
+ sizeof(uint16_t)*6*ptexIndex);
*p++ = (uint16_t)i; // page
*p++ = (uint16_t)((*it)->nMipmaps-1);
*p++ = (uint16_t)((*it)->u+1);
*p++ = (uint16_t)((*it)->v+1);
*p++ = (*it)->adjSizeDiffs;
*p++ = (uint16_t)(((*it)->ulog2 << 8) | (*it)->vlog2);
}
}
#if 0
// debug
FILE *fp = fopen("out.ppm", "w");
fprintf(fp, "P3\n");
fprintf(fp, "%d %d\n", _pageWidth, _pageHeight * numPages);
fprintf(fp, "255\n");
unsigned char *p = _texelBuffer;
for (int i = 0; i < numPages; ++i) {
for (int y = 0; y < _pageHeight; ++y) {
for (int x = 0; x < _pageWidth; ++x) {
fprintf(fp, "%d %d %d ", (int)p[0], (int)p[1], (int)p[2]);
p += _bpp;
}
fprintf(fp, "\n");
}
}
fclose(fp);
#endif
}
|