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
|
/********************************************************************************
* *
* S i n g l e - P r e c i s i o n 4 - E l e m e n t V e c t o r *
* *
*********************************************************************************
* Copyright (C) 1994,2022 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXStream.h"
#include "FXObject.h"
#include "FXVec2f.h"
#include "FXVec3f.h"
#include "FXVec4f.h"
#include "FXQuatf.h"
using namespace FX;
/*******************************************************************************/
namespace FX {
#if defined(FOX_HAS_AVX2)
// Convert from vector to color
FXColor colorFromVec4f(const FXVec4f& vec){
FXColor res;
// Scale and convert to integer: 000000AA 000000BB 000000GG 000000RR
__m128i uuuu=_mm_cvtps_epi32(_mm_mul_ps(_mm_loadu_ps(&vec[0]),_mm_set1_ps(255.0f)));
// Shuffle to lower 4 bytes: RRRRRRRR RRRRRRRR RRRRRRRR AARRGGBB
__m128i bbbb=_mm_shuffle_epi8(uuuu,_mm_set_epi8(0,0,0,0, 0,0,0,0, 0,0,0,0, 12,0,4,8));
// Assign to output
res=_mm_cvtsi128_si32(bbbb);
return res;
}
// Convert from color to vector
FXVec4f colorToVec4f(FXColor clr){
FXVec4f res;
// Shuffle into place, zero the rest: 000000AA 000000BB 000000GG 000000RR
__m128i uuuu=_mm_shuffle_epi8(_mm_cvtsi32_si128(clr),_mm_set_epi8(8,8,8,3, 8,8,8,0, 8,8,8,1, 8,8,8,2));
// Convert to float and scale: AAAAAAAA BBBBBBBB GGGGGGGG RRRRRRRR
__m128 ffff=_mm_mul_ps(_mm_cvtepi32_ps(uuuu),_mm_set1_ps(0.003921568627f));
// Assign to output
_mm_storeu_ps(&res[0],ffff);
return res;
}
#else
// Convert from vector to color
FXColor colorFromVec4f(const FXVec4f& vec){
return FXRGBA((vec.x*255.0f+0.5f),(vec.y*255.0f+0.5f),(vec.z*255.0f+0.5f),(vec.w*255.0f+0.5f));
}
// Convert from color to vector
FXVec4f colorToVec4f(FXColor clr){
return FXVec4f(0.003921568627f*FXREDVAL(clr),0.003921568627f*FXGREENVAL(clr),0.003921568627f*FXBLUEVAL(clr),0.003921568627f*FXALPHAVAL(clr));
}
#endif
// Compute fast dot product with vector code
FXfloat dot(const FXVec4f& u,const FXVec4f& v){
#if defined(FOX_HAS_AVX)
__m128 uu=_mm_loadu_ps(&u[0]);
__m128 vv=_mm_loadu_ps(&v[0]);
return _mm_cvtss_f32(_mm_dp_ps(uu,vv,0xF1));
#else
return u*v;
#endif
}
// Normalize vector
FXVec4f normalize(const FXVec4f& v){
FXfloat m=v.length();
if(__likely(m)){ return v/m; }
return v;
}
// Compute normalized plane equation ax+by+cz+d=0
FXVec4f plane(const FXVec4f& vec){
FXfloat t=Math::sqrt(vec.x*vec.x+vec.y*vec.y+vec.z*vec.z);
return FXVec4f(vec.x/t,vec.y/t,vec.z/t,vec.w/t);
}
// Compute plane equation from vector and distance
FXVec4f plane(const FXVec3f& vec,FXfloat dist){
FXVec3f nm(normalize(vec));
return FXVec4f(nm,-dist);
}
// Compute plane equation from vector and point on plane
FXVec4f plane(const FXVec3f& vec,const FXVec3f& p){
FXVec3f nm(normalize(vec));
return FXVec4f(nm,-(nm.x*p.x+nm.y*p.y+nm.z*p.z));
}
// Compute plane equation from 3 points a,b,c
FXVec4f plane(const FXVec3f& a,const FXVec3f& b,const FXVec3f& c){
FXVec3f nm(normal(a,b,c));
return FXVec4f(nm,-(nm.x*a.x+nm.y*a.y+nm.z*a.z));
}
// Signed distance normalized plane and point
FXfloat FXVec4f::distance(const FXVec3f& p) const {
return x*p.x+y*p.y+z*p.z+w;
}
// Return true if edge a-b crosses plane
FXbool FXVec4f::crosses(const FXVec3f& a,const FXVec3f& b) const {
return (distance(a)>=0.0f) ^ (distance(b)>=0.0f);
}
// Save vector to stream
FXStream& operator<<(FXStream& store,const FXVec4f& v){
store << v.x << v.y << v.z << v.w;
return store;
}
// Load vector from stream
FXStream& operator>>(FXStream& store,FXVec4f& v){
store >> v.x >> v.y >> v.z >> v.w;
return store;
}
}
|