CFx SDK Documentation  2023 SP0
daiPlatform.h
Go to the documentation of this file.
1 // Copyright (C) 2002-2019, Open Design Alliance (the "Alliance").
3 // All rights reserved.
4 //
5 // This software and its documentation and related materials are owned by
6 // the Alliance. The software may only be incorporated into application
7 // programs owned by members of the Alliance, subject to a signed
8 // Membership Agreement and Supplemental Software License Agreement with the
9 // Alliance. The structure and organization of this software are the valueuable
10 // trade secrets of the Alliance and its suppliers. The software is also
11 // protected by copyright law and international treaty provisions. Application
12 // programs incorporating this software must include the following statement
13 // with their copyright notices:
14 //
15 // This application incorporates Open Design Alliance software pursuant to a license
16 // agreement with Open Design Alliance.
17 // Open Design Alliance Copyright (C) 2002-2019 by Open Design Alliance.
18 // All rights reserved.
19 //
20 // By use of this software, its documentation or related materials, you
21 // acknowledge and accept the above terms.
23 
24 
25 #ifndef _DAI_PLATFORM_H_
26 #define _DAI_PLATFORM_H_
27 // Temprary file! After function moving this file should be removed from the solution
28 
29 #include "OdPlatform.h"
30 
31 // This function should be tested on different platform. After successful tests we should move it to OdPlatfrom.h
32 template<class RealType>
33 inline RealType nanIEEERealCreate()
34 {
35  /*
36  int inf = 0x7F800000;
37  int nan = 0x7F800001;
38  */
39  union nanType
40  {
41  RealType nan;
42  unsigned char buf[sizeof(RealType)];
43  };
44 
45  nanType nanGenerator = { 0 };
46 
47 #ifdef ODA_BIGENDIAN
48  nanGenerator.buf[0] = 0x7F;
49  nanGenerator.buf[1] = 0xF0;
50  nanGenerator.buf[sizeof(RealType) - 1] = 0x1;
51 #else
52  nanGenerator.buf[sizeof(RealType) - 1] = 0x7F;
53  nanGenerator.buf[sizeof(RealType) - 2] = 0xF0;
54  nanGenerator.buf[0] = 0x1;
55 #endif
56 
57  return nanGenerator.nan;
58 }
59 
60 #endif // _DAI_PLATFORM_H_
61 
RealType nanIEEERealCreate()
Definition: daiPlatform.h:33