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
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt / Thomas Alten
// This file is part of the "Irrlicht Engine".
// For conditions of distribution and use, see copyright notice in irrlicht.h
#ifndef __S_4D_VERTEX_H_INCLUDED__
#define __S_4D_VERTEX_H_INCLUDED__
#include "SoftwareDriver2_compile_config.h"
#include "SoftwareDriver2_helper.h"
#include "irrAllocator.h"
namespace irr
{
namespace video
{
struct sVec2
{
f32 x;
f32 y;
sVec2 () {}
sVec2 ( f32 s) : x ( s ), y ( s ) {}
sVec2 ( f32 _x, f32 _y )
: x ( _x ), y ( _y ) {}
void set ( f32 _x, f32 _y )
{
x = _x;
y = _y;
}
// f = a * t + b * ( 1 - t )
void interpolate(const sVec2& a, const sVec2& b, const f32 t)
{
x = b.x + ( ( a.x - b.x ) * t );
y = b.y + ( ( a.y - b.y ) * t );
}
sVec2 operator-(const sVec2& other) const
{
return sVec2(x - other.x, y - other.y);
}
sVec2 operator+(const sVec2& other) const
{
return sVec2(x + other.x, y + other.y);
}
void operator+=(const sVec2& other)
{
x += other.x;
y += other.y;
}
sVec2 operator*(const f32 s) const
{
return sVec2(x * s , y * s);
}
void operator*=( const f32 s)
{
x *= s;
y *= s;
}
void operator=(const sVec2& other)
{
x = other.x;
y = other.y;
}
};
// A8R8G8B8
struct sVec4;
struct sCompressedVec4
{
u32 argb;
void setA8R8G8B8 ( u32 value )
{
argb = value;
}
void setColorf ( const video::SColorf & color )
{
argb = core::floor32 ( color.a * 255.f ) << 24 |
core::floor32 ( color.r * 255.f ) << 16 |
core::floor32 ( color.g * 255.f ) << 8 |
core::floor32 ( color.b * 255.f );
}
void setVec4 ( const sVec4 & v );
// f = a * t + b * ( 1 - t )
void interpolate(const sCompressedVec4& a, const sCompressedVec4& b, const f32 t)
{
argb = PixelBlend32 ( b.argb, a.argb, core::floor32 ( t * 256.f ) );
}
};
struct sVec4
{
union
{
struct { f32 x, y, z, w; };
struct { f32 a, r, g, b; };
// struct { sVec2 xy, zw; }; // sorry, this does not compile with gcc
};
sVec4 () {}
sVec4 ( f32 s) : x ( s ), y ( s ), z ( s ), w ( s ) {}
sVec4 ( f32 _x, f32 _y, f32 _z, f32 _w )
: x ( _x ), y ( _y ), z( _z ), w ( _w ){}
void set ( f32 _x, f32 _y, f32 _z, f32 _w )
{
x = _x;
y = _y;
z = _z;
w = _w;
}
void setA8R8G8B8 ( u32 argb )
{
x = ( ( argb & 0xFF000000 ) >> 24 ) * ( 1.f / 255.f );
y = ( ( argb & 0x00FF0000 ) >> 16 ) * ( 1.f / 255.f );
z = ( ( argb & 0x0000FF00 ) >> 8 ) * ( 1.f / 255.f );
w = ( ( argb & 0x000000FF ) ) * ( 1.f / 255.f );
}
void setColorf ( const video::SColorf & color )
{
x = color.a;
y = color.r;
z = color.g;
w = color.b;
}
// f = a * t + b * ( 1 - t )
void interpolate(const sVec4& a, const sVec4& b, const f32 t)
{
x = b.x + ( ( a.x - b.x ) * t );
y = b.y + ( ( a.y - b.y ) * t );
z = b.z + ( ( a.z - b.z ) * t );
w = b.w + ( ( a.w - b.w ) * t );
}
f32 dotProduct(const sVec4& other) const
{
return x*other.x + y*other.y + z*other.z + w*other.w;
}
f32 dot_xyz( const sVec4& other) const
{
return x*other.x + y*other.y + z*other.z;
}
f32 get_length_xyz_square () const
{
return x * x + y * y + z * z;
}
f32 get_length_xyz () const
{
return core::squareroot ( x * x + y * y + z * z );
}
void normalize_xyz ()
{
const f32 l = core::reciprocal_squareroot ( x * x + y * y + z * z );
x *= l;
y *= l;
z *= l;
}
void project_xyz ()
{
w = core::reciprocal ( w );
x *= w;
y *= w;
z *= w;
}
sVec4 operator-(const sVec4& other) const
{
return sVec4(x - other.x, y - other.y, z - other.z,w - other.w);
}
sVec4 operator+(const sVec4& other) const
{
return sVec4(x + other.x, y + other.y, z + other.z,w + other.w);
}
void operator+=(const sVec4& other)
{
x += other.x;
y += other.y;
z += other.z;
w += other.w;
}
sVec4 operator*(const f32 s) const
{
return sVec4(x * s , y * s, z * s,w * s);
}
sVec4 operator*(const sVec4 &other) const
{
return sVec4(x * other.x , y * other.y, z * other.z,w * other.w);
}
void mulReciprocal ( f32 s )
{
const f32 i = core::reciprocal ( s );
x = (f32) ( x * i );
y = (f32) ( y * i );
z = (f32) ( z * i );
w = (f32) ( w * i );
}
void mul ( const f32 s )
{
x *= s;
y *= s;
z *= s;
w *= s;
}
/*
void operator*=(f32 s)
{
x *= s;
y *= s;
z *= s;
w *= s;
}
*/
void operator*=(const sVec4 &other)
{
x *= other.x;
y *= other.y;
z *= other.z;
w *= other.w;
}
void operator=(const sVec4& other)
{
x = other.x;
y = other.y;
z = other.z;
w = other.w;
}
};
struct sVec3
{
union
{
struct { f32 r, g, b; };
struct { f32 x, y, z; };
};
sVec3 () {}
sVec3 ( f32 _x, f32 _y, f32 _z )
: r ( _x ), g ( _y ), b( _z ) {}
sVec3 ( const sVec4 &v )
: r ( v.x ), g ( v.y ), b( v.z ) {}
void set ( f32 _r, f32 _g, f32 _b )
{
r = _r;
g = _g;
b = _b;
}
void setR8G8B8 ( u32 argb )
{
r = ( ( argb & 0x00FF0000 ) >> 16 ) * ( 1.f / 255.f );
g = ( ( argb & 0x0000FF00 ) >> 8 ) * ( 1.f / 255.f );
b = ( ( argb & 0x000000FF ) ) * ( 1.f / 255.f );
}
void setColorf ( const video::SColorf & color )
{
r = color.r;
g = color.g;
b = color.b;
}
void add (const sVec3& other)
{
r += other.r;
g += other.g;
b += other.b;
}
void mulAdd(const sVec3& other, const f32 v)
{
r += other.r * v;
g += other.g * v;
b += other.b * v;
}
void mulAdd(const sVec3& v0, const sVec3& v1)
{
r += v0.r * v1.r;
g += v0.g * v1.g;
b += v0.b * v1.b;
}
void saturate ( sVec4 &dest, u32 argb )
{
dest.x = ( ( argb & 0xFF000000 ) >> 24 ) * ( 1.f / 255.f );
dest.y = core::min_ ( r, 1.f );
dest.z = core::min_ ( g, 1.f );
dest.w = core::min_ ( b, 1.f );
}
// f = a * t + b * ( 1 - t )
void interpolate(const sVec3& v0, const sVec3& v1, const f32 t)
{
r = v1.r + ( ( v0.r - v1.r ) * t );
g = v1.g + ( ( v0.g - v1.g ) * t );
b = v1.b + ( ( v0.b - v1.b ) * t );
}
sVec3 operator-(const sVec3& other) const
{
return sVec3(r - other.r, b - other.b, g - other.g);
}
sVec3 operator+(const sVec3& other) const
{
return sVec3(r + other.r, g + other.g, b + other.b);
}
sVec3 operator*(const f32 s) const
{
return sVec3(r * s , g * s, b * s);
}
sVec3 operator/(const f32 s) const
{
f32 inv = 1.f / s;
return sVec3(r * inv , g * inv, b * inv);
}
sVec3 operator*(const sVec3 &other) const
{
return sVec3(r * other.r , b * other.b, g * other.g);
}
void operator+=(const sVec3& other)
{
r += other.r;
g += other.g;
b += other.b;
}
void setLength ( f32 len )
{
const f32 l = len * core::reciprocal_squareroot ( r * r + g * g + b * b );
r *= l;
g *= l;
b *= l;
}
};
inline void sCompressedVec4::setVec4 ( const sVec4 & v )
{
argb = core::floor32 ( v.x * 255.f ) << 24 |
core::floor32 ( v.y * 255.f ) << 16 |
core::floor32 ( v.z * 255.f ) << 8 |
core::floor32 ( v.w * 255.f );
}
enum e4DVertexFlag
{
VERTEX4D_INSIDE = 0x0000003F,
VERTEX4D_CLIPMASK = 0x0000003F,
VERTEX4D_PROJECTED = 0x00000100,
VERTEX4D_FORMAT_MASK = 0xFFFF0000,
VERTEX4D_FORMAT_MASK_TEXTURE = 0x000F0000,
VERTEX4D_FORMAT_TEXTURE_1 = 0x00010000,
VERTEX4D_FORMAT_TEXTURE_2 = 0x00020000,
VERTEX4D_FORMAT_TEXTURE_3 = 0x00030000,
VERTEX4D_FORMAT_TEXTURE_4 = 0x00040000,
VERTEX4D_FORMAT_MASK_COLOR = 0x00F00000,
VERTEX4D_FORMAT_COLOR_1 = 0x00100000,
VERTEX4D_FORMAT_COLOR_2 = 0x00200000,
VERTEX4D_FORMAT_MASK_BUMP = 0x0F000000,
VERTEX4D_FORMAT_BUMP_DOT3 = 0x01000000,
};
const u32 MATERIAL_MAX_COLORS = 1;
const u32 BURNING_MATERIAL_MAX_TEXTURES = 2;
const u32 BURNING_MATERIAL_MAX_TANGENT = 1;
// dummy Vertex. used for calculation vertex memory size
struct s4DVertex_proxy
{
u32 flag;
sVec4 Pos;
sVec2 Tex[BURNING_MATERIAL_MAX_TEXTURES];
#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
sVec4 Color[MATERIAL_MAX_COLORS];
#endif
sVec3 LightTangent[BURNING_MATERIAL_MAX_TANGENT];
};
#define SIZEOF_SVERTEX 64
#define SIZEOF_SVERTEX_LOG2 6
/*!
Internal BurningVideo Vertex
*/
struct s4DVertex
{
u32 flag;
sVec4 Pos;
sVec2 Tex[ BURNING_MATERIAL_MAX_TEXTURES ];
#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
sVec4 Color[ MATERIAL_MAX_COLORS ];
#endif
sVec3 LightTangent[BURNING_MATERIAL_MAX_TANGENT];
//u8 fill [ SIZEOF_SVERTEX - sizeof (s4DVertex_proxy) ];
// f = a * t + b * ( 1 - t )
void interpolate(const s4DVertex& b, const s4DVertex& a, const f32 t)
{
u32 i;
u32 size;
Pos.interpolate ( a.Pos, b.Pos, t );
#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
size = (flag & VERTEX4D_FORMAT_MASK_COLOR) >> 20;
for ( i = 0; i!= size; ++i )
{
Color[i].interpolate ( a.Color[i], b.Color[i], t );
}
#endif
size = (flag & VERTEX4D_FORMAT_MASK_TEXTURE) >> 16;
for ( i = 0; i!= size; ++i )
{
Tex[i].interpolate ( a.Tex[i], b.Tex[i], t );
}
size = (flag & VERTEX4D_FORMAT_MASK_BUMP) >> 24;
for ( i = 0; i!= size; ++i )
{
LightTangent[i].interpolate ( a.LightTangent[i], b.LightTangent[i], t );
}
}
};
// ----------------- Vertex Cache ---------------------------
struct SAlignedVertex
{
SAlignedVertex ( u32 element, u32 aligned )
: ElementSize ( element )
{
u32 byteSize = (ElementSize << SIZEOF_SVERTEX_LOG2 ) + aligned;
mem = new u8 [ byteSize ];
data = (s4DVertex*) mem;
}
virtual ~SAlignedVertex ()
{
delete [] mem;
}
s4DVertex *data;
u8 *mem;
u32 ElementSize;
};
// hold info for different Vertex Types
struct SVSize
{
u32 Format;
u32 Pitch;
u32 TexSize;
};
// a cache info
struct SCacheInfo
{
u32 index;
u32 hit;
};
#define VERTEXCACHE_ELEMENT 16
#define VERTEXCACHE_MISS 0xFFFFFFFF
struct SVertexCache
{
SVertexCache (): mem ( VERTEXCACHE_ELEMENT * 2, 128 ) {}
SCacheInfo info[VERTEXCACHE_ELEMENT];
// Transformed and lite, clipping state
// + Clipped, Projected
SAlignedVertex mem;
// source
const void* vertices;
u32 vertexCount;
const void* indices;
u32 indexCount;
u32 indicesIndex;
u32 indicesRun;
// primitives consist of x vertices
u32 primitivePitch;
u32 vType; //E_VERTEX_TYPE
u32 pType; //scene::E_PRIMITIVE_TYPE
u32 iType; //E_INDEX_TYPE iType
};
// swap 2 pointer
REALINLINE void swapVertexPointer(const s4DVertex** v1, const s4DVertex** v2)
{
const s4DVertex* b = *v1;
*v1 = *v2;
*v2 = b;
}
// ------------------------ Internal Scanline Rasterizer -----------------------------
// internal scan convert
struct sScanConvertData
{
u8 left; // major edge left/right
u8 right; // !left
f32 invDeltaY[3]; // inverse edge delta y
f32 x[2]; // x coordinate
f32 slopeX[2]; // x slope along edges
#if defined ( SOFTWARE_DRIVER_2_USE_WBUFFER ) || defined ( SOFTWARE_DRIVER_2_PERSPECTIVE_CORRECT )
f32 w[2]; // w coordinate
fp24 slopeW[2]; // w slope along edges
#else
f32 z[2]; // z coordinate
f32 slopeZ[2]; // z slope along edges
#endif
sVec4 c[MATERIAL_MAX_COLORS][2]; // color
sVec4 slopeC[MATERIAL_MAX_COLORS][2]; // color slope along edges
sVec2 t[BURNING_MATERIAL_MAX_TEXTURES][2]; // texture
sVec2 slopeT[BURNING_MATERIAL_MAX_TEXTURES][2]; // texture slope along edges
sVec3 l[BURNING_MATERIAL_MAX_TANGENT][2]; // Light Tangent
sVec3 slopeL[BURNING_MATERIAL_MAX_TEXTURES][2]; // tanget slope along edges
};
// passed to scan Line
struct sScanLineData
{
s32 y; // y position of scanline
f32 x[2]; // x start, x end of scanline
#if defined ( SOFTWARE_DRIVER_2_USE_WBUFFER ) || defined ( SOFTWARE_DRIVER_2_PERSPECTIVE_CORRECT )
f32 w[2]; // w start, w end of scanline
#else
f32 z[2]; // z start, z end of scanline
#endif
#ifdef SOFTWARE_DRIVER_2_USE_VERTEX_COLOR
sVec4 c[MATERIAL_MAX_COLORS][2]; // color start, color end of scanline
#endif
sVec2 t[BURNING_MATERIAL_MAX_TEXTURES][2]; // texture start, texture end of scanline
sVec3 l[BURNING_MATERIAL_MAX_TANGENT][2]; // Light Tangent start, end
};
// passed to pixel Shader
struct sPixelShaderData
{
tVideoSample *dst;
fp24 *z;
s32 xStart;
s32 xEnd;
s32 dx;
s32 i;
};
/*
load a color value
*/
inline void getTexel_plain2 ( tFixPoint &r, tFixPoint &g, tFixPoint &b,
const sVec4 &v
)
{
r = tofix ( v.y );
g = tofix ( v.z );
b = tofix ( v.w );
}
/*
load a color value
*/
inline void getSample_color ( tFixPoint &a, tFixPoint &r, tFixPoint &g, tFixPoint &b,
const sVec4 &v
)
{
a = tofix ( v.x );
r = tofix ( v.y, COLOR_MAX * FIX_POINT_F32_MUL);
g = tofix ( v.z, COLOR_MAX * FIX_POINT_F32_MUL);
b = tofix ( v.w, COLOR_MAX * FIX_POINT_F32_MUL);
}
/*
load a color value
*/
inline void getSample_color ( tFixPoint &r, tFixPoint &g, tFixPoint &b,const sVec4 &v )
{
r = tofix ( v.y, COLOR_MAX * FIX_POINT_F32_MUL);
g = tofix ( v.z, COLOR_MAX * FIX_POINT_F32_MUL);
b = tofix ( v.w, COLOR_MAX * FIX_POINT_F32_MUL);
}
/*
load a color value
*/
inline void getSample_color ( tFixPoint &r, tFixPoint &g, tFixPoint &b,
const sVec4 &v, const f32 mulby )
{
r = tofix ( v.y, mulby);
g = tofix ( v.z, mulby);
b = tofix ( v.w, mulby);
}
}
}
#endif
|