Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef __ARTKPFIXEDBASE_GPP_HEADERFILE__
00042 #define __ARTKPFIXEDBASE_GPP_HEADERFILE__
00043
00044
00045 #include <gpp.h>
00046 #ifdef DEBUG
00047 #pragma comment( lib, "gpp_WMMX40_d.lib" )
00048 #else
00049 #pragma comment( lib, "gpp_WMMX40_r.lib" )
00050 #endif //DEBUG
00051
00052
00053 template <int PBITS_>
00054 class artkpFixedBase_gpp
00055 {
00056 public:
00057 enum {
00058 PBITS = PBITS_,
00059 CHECK = 0
00060 };
00061
00062 static float floatFromFixed(int nFixed)
00063 {
00064 return nFixed/(float)(1 << PBITS);
00065 }
00066
00067 static double doubleFromFixed(int nFixed)
00068 {
00069 return nFixed/(double)(1 << PBITS);
00070 }
00071
00072 static int fixedFromInt(int nV)
00073 {
00074 return nV<<PBITS;
00075 }
00076
00077 static int fixedFromFloat(float nV)
00078 {
00079 return (int)(nV * (float)(1 << PBITS) + 0.5f);
00080 }
00081
00082 static int fixedFromDouble(double nV)
00083 {
00084 return (int)(nV * (double)(1 << PBITS) + 0.5f);
00085 }
00086
00087 static int inverse(int nFixed)
00088 {
00089 int ret=0;
00090 gppInvHP_n_32s(nFixed, &ret, PBITS);
00091 return ret;
00092 }
00093
00094 static int multiply(int nLeftFixed, int nRightFixed)
00095 {
00096 int ret;
00097 gppMul_n_32s(nLeftFixed, nRightFixed, &ret, PBITS);
00098 return ret;
00099 }
00100
00101 static int divide(int nLeftFixed, int nRightFixed)
00102 {
00103 int ret;
00104 gppDiv_n_32s(nLeftFixed, nRightFixed, &ret, PBITS);
00105 return ret;
00106 }
00107
00108 static int cos(int nFixed)
00109 {
00110 int ret;
00111 gppCosHP_n_32s(nFixed, &ret, PBITS);
00112 return ret;
00113 }
00114
00115 static int sin(int nFixed)
00116 {
00117 int ret;
00118 gppSinHP_n_32s(nFixed, &ret, PBITS);
00119 return ret;
00120 }
00121
00122 static int fabs(int nFixed)
00123 {
00124 return nFixed<0 ? -nFixed : nFixed;
00125 }
00126
00127 static int sqrt(int nFixed)
00128 {
00129 unsigned int ret;
00130 gppSqrtHP_n_32s(nFixed, &ret, PBITS);
00131 return (int)ret;
00132 }
00133
00134 static int inverseSqrt(int nFixed)
00135 {
00136 unsigned int ret;
00137 gppInvSqrtHP_n_32s(nFixed, &ret, PBITS);
00138 return (int)ret;
00139 }
00140
00141 static int ceil(int nFixed)
00142 {
00143 int ret = (nFixed>>PBITS)<<PBITS;
00144
00145 if(nFixed>=0 && ret<nFixed)
00146 ret += fixedFromInt(1);
00147
00148 return ret;
00149 }
00150 };
00151
00152
00153 #endif //__ARTKPFIXEDBASE_GPP_HEADERFILE__