2015-03-03 00:38:33 +08:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** GeomIO Library
|
|
|
|
** Copyright FougSys (2 Mar. 2015)
|
|
|
|
** contact@fougsys.fr
|
|
|
|
**
|
|
|
|
** This software is a reusable library whose purpose is to provide complete
|
|
|
|
** I/O support for various CAD file formats (eg. STL)
|
|
|
|
**
|
|
|
|
** This software is governed by the CeCILL-B license under French law and
|
|
|
|
** abiding by the rules of distribution of free software. You can use,
|
|
|
|
** modify and/ or redistribute the software under the terms of the CeCILL-B
|
|
|
|
** license as circulated by CEA, CNRS and INRIA at the following URL
|
|
|
|
** "http://www.cecill.info".
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-01-29 02:06:24 +08:00
|
|
|
/* Warning : this header has no multi-inclusion guard. It must be included only once in the
|
|
|
|
* translation unit of use. The reason is that all functions defined here are meant to
|
|
|
|
* be inlined for performance purpose
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../global.h"
|
|
|
|
|
|
|
|
/*! Read a 16bit integer from memory-location \p bytes (little-endian byte order) */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static uint16_t gmio_decode_uint16_le(const uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
/* |0 |1 | */
|
|
|
|
/* |BB|AA| -> 0xAABB */
|
|
|
|
return (bytes[1] << 8) | bytes[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! Read a 16bit integer from memory-location \p bytes (big-endian byte order) */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static uint16_t gmio_decode_uint16_be(const uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
/* |0 |1 | */
|
|
|
|
/* |AA|BB| -> 0xAABB */
|
|
|
|
return (bytes[0] << 8) | bytes[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! Write 16bit integer \p val to the memory location at \p bytes in little-endian byte order */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static void gmio_encode_uint16_le(uint16_t val, uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
bytes[0] = val & 0xFF;
|
|
|
|
bytes[1] = (val >> 8) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! Read a 32bit integer from memory-location \p bytes (little-endian byte order) */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static uint32_t gmio_decode_uint32_le(const uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
/* |DD|CC|BB|AA| -> 0xAABBCCDD */
|
|
|
|
return bytes[0] | (bytes[1] << 8) | (bytes[2] << 16) | (bytes[3] << 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! Read a 32bit integer from memory-location \p bytes (mixed-endian byte order) */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static uint32_t gmio_decode_uint32_me(const uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
/* |DD|CC|BB|AA| -> 0xCCDDAABB */
|
2014-02-04 22:45:31 +08:00
|
|
|
return (bytes[0] << 16) | (bytes[1] << 24) | (bytes[3] << 8) | bytes[2];
|
2014-01-29 02:06:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*! Read a 32bit integer from memory-location \p bytes (big-endian byte order) */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static uint32_t gmio_decode_uint32_be(const uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
/* |DD|CC|BB|AA| -> 0xDDCCBBAA */
|
|
|
|
return bytes[3] | (bytes[2] << 8) | (bytes[1] << 16) | (bytes[0] << 24);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! Write 32bit integer \p val to the memory location at \p bytes in little-endian byte order */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static void gmio_encode_uint32_le(uint32_t val, uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
bytes[0] = val & 0xFF;
|
|
|
|
bytes[1] = (val >> 8) & 0xFF;
|
|
|
|
bytes[2] = (val >> 16) & 0xFF;
|
|
|
|
bytes[3] = (val >> 24) & 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! Write 32bit integer \p val to the memory location at \p bytes in big-endian byte order */
|
2014-03-28 23:33:35 +08:00
|
|
|
GMIO_INLINE static void gmio_encode_uint32_be(uint32_t val, uint8_t* bytes)
|
2014-01-29 02:06:24 +08:00
|
|
|
{
|
|
|
|
bytes[0] = (val >> 24) & 0xFF;
|
|
|
|
bytes[1] = (val >> 16) & 0xFF;
|
|
|
|
bytes[2] = (val >> 8) & 0xFF;
|
|
|
|
bytes[3] = val & 0xFF;
|
|
|
|
}
|